C# Programming - Inheritance - Discussion
Discussion Forum : Inheritance - General Questions (Q.No. 4)
4.
What will be the size of the object created by the following C#.NET code snippet?
namespace IndiabixConsoleApplication
{
class Baseclass
{
private int i;
protected int j;
public int k;
}
class Derived: Baseclass
{
private int x;
protected int y;
public int z;
}
class MyProgram
{
static void Main (string[ ] args)
{
Derived d = new Derived();
}
}
}
Discussion:
29 comments Page 1 of 3.
Narendra said:
5 years ago
The size of a derived class object is equal to the sum of sizes of data members in base class and the derived class.
(1)
Kush kumar said:
9 years ago
Because even if base class consisting any accessibility modifier to its data field, all data field is going to be inherited to the child class (including private field also) , but base class private field can not access inside child class.
Vivek sanjay shinde said:
2 months ago
There is a private variable in the parent class.
So the child class can contain only 5 variables.
So, 5*4 = 20bytes.
So the child class can contain only 5 variables.
So, 5*4 = 20bytes.
Sridhar said:
5 years ago
Not getting this. Please explain in a correct way.
Anju said:
5 years ago
By default, int is int32 in C# which takes 4 bytes.
6 fields get inherited to the class even though two can't be used.
So 6*4 =24 bytes.
6 fields get inherited to the class even though two can't be used.
So 6*4 =24 bytes.
Sunil said:
7 years ago
But we cannot access the protected member in the object of derived class. So memory does not occupy by this.
So, 4+4() is base class and (4+4) is derived class.
So, 4+4() is base class and (4+4) is derived class.
Vikas Verma said:
7 years ago
A size of int is 4.
How to check?
Console.WriteLine(sizeof(int));
Sol- 4
How to check?
Console.WriteLine(sizeof(int));
Sol- 4
Raghupati Gupta said:
8 years ago
How will value 24 Byte?
Adi said:
8 years ago
How to check object memory?
Nithyapriya said:
8 years ago
For integer 4 similarly double, float, char. What is the value for this and all?
Post your comments here:
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers