Value type va Reference type

Mushtariy - Oct 13 - - Dev Community

a)Quyidagi kodning natijasini ayting va tushuntiring.

class Program
{
   static void Main(string args[])
   {
      int x = 10;
      int y = x;
      y = 20;
      Console.WriteLine(x);
   }
}

Enter fullscreen mode Exit fullscreen mode

Javob 10 chunki x ning qiymati 10 va bu qiymat o'zgarmagan.

b)Quyidagi kodning natijasini tushuntiring.

class Person
{
   public string Name;
}

class Program
{
   static void Main(string[] args)
   {
      Person p1 = new Person();
      p1.Name = "Alice";
      Person p2 = p1;
      p2.Name = "Bob";
      Console.WriteLine(p1.Name);
   }
}
Enter fullscreen mode Exit fullscreen mode

Javob:

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player