What is the difference b/w constant & read only variable?

Answers were Sorted based on User's Feedback



What is the difference b/w constant & read only variable?..

Answer / test

Constant: The value of a constant variable is set at
compile time and can't be reset again.

Readonly: Can be set in a constructor or can be reset again.

Is This Answer Correct ?    19 Yes 1 No

What is the difference b/w constant & read only variable?..

Answer / sumesh

For Both Constants and Read only values, we can set values
for them only once.

In the case of Constants, we set the value at the compile
time itself. After that we cannot change it

Example:

class Test
{
const double pi = 3.14;
.......................
.......................

}

In the case of Read only data, we can set the value in the
constructor.

Example:

class Test
{
private double _bonus;

public Test(double bonus)
{
_bonus = bonus;
}

public double Bonus
{
get { return _bonus; }
}

}

Test a(5.25);
Test b(6.75);

In this case, at the time object creation, we can set the
value for the bonus. That is, we can decide the value at
the runtime. So a reaonly variable is also known as runtime
constants.


So, the basic difference is, in the case of contstant, the
value will be same across the objects of that class, but it
may differ in the case of readonly variables.

Is This Answer Correct ?    16 Yes 0 No

What is the difference b/w constant & read only variable?..

Answer / dharmendra

constant value set on initialization it not may be change or
reset when that readonly can be change in running time.

Is This Answer Correct ?    12 Yes 0 No

What is the difference b/w constant & read only variable?..

Answer / maloy.adhikari

Constants: The value can't be changed

Read-only: The value will be initialized only once from the
constructor of the class.


Const:
1)Can not be static.
2)The value is evaluated at compile time.
3)It is initialized at declaration only.
4)the const keyword is used for compile-time constants

Readonly:
1)Can be either instance-level or static.
2)The value is evaluated at run time.
3)It can be initialized in declaration or by code in the
constructor. Therefore, readonly fields can have different
values depending on the constructor used.
4)the readonly keyword is used for runtime constants.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Dot Net Framework Interview Questions

What is a serverside technology? what is a clientside technology? what is a clientserver technology? what is a internet based application? what is a intranet based application? what is a windows application? what is a console application? Difference between console application and windows application?

4 Answers   IBM,


What is meant by viewdata?

0 Answers  


What is Dependency Injection in ASP.Net MVC

0 Answers   B-Ways TecnoSoft,


Mention some action filters which are used regularly in ASP.Net MVC?

0 Answers  


How large is the .net framework 3.0?

0 Answers  


How do you sort a dataset?

2 Answers  


what is linq to entities?

0 Answers   Microsoft,


What is the advantage of mvc?

0 Answers  


Can we look at the IL for an assembly?

2 Answers  


Is .net framework dead?

0 Answers  


Diffence between .net framework 1.0 and 2.0?

2 Answers   DataPoint,


How to identify the Code which Complies corresponding Compiler in .NET? Means Suppose, i am taking One project A.. in which code is implemented using C# langugge. And Another Project B..in Which Code is implemented using VB.NET. Suppose I am creating Project C. i am adding Reference of Project A and B to Project C. So, in Project C, how to identify Project A is Complied through CSCompliler? And Project B is Compiled VBCompiler at Runtime?

1 Answers  


Categories