Constants and Read-Only Fields
Learn to create fields that are read-only.
We'll cover the following...
Constants
A constant is an immutable field with a value assigned during compilation. Constants can’t be reassigned and their value can’t be modified.
Constants are declared using the const
keyword:
public const int PI = 3.14;
Only the primitive types, except for the Object
class
, can be declared as constants. Any other classes, including ...
Access this course and 1400+ top-rated courses and projects.