Final local variables in C#

WBOY
Release: 2023-09-12 15:05:02
forward
1425 people have browsed it

C# 中的最终局部变量

To make a local variable final, use the read-only keyword in C# because it is not possible to implement the final keyword.

The read-only keyword allows a variable to be assigned only once. Fields marked "read-only" can only be set once during object construction and cannot be changed.

Let's look at an example. Below, we set the empCount field to be read-only and cannot be changed once assigned.

Example

class Department {
   readonly int empCount;

   Employee(int empCount) {
      this. empCount = empCount;
   }

   void ChangeCount() {
      //empCount = 150; // Compile error
   }
}
Copy after login

The above is the detailed content of Final local variables in C#. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!