變數的作用域是指變數被存取的程式碼區域。
對於一個變量,它有以下幾個等級:
在方法內宣告的變數是局部變數。
在類別內宣告的變數是局部變數和類別成員變數。
讓我們來看一個變數作用域的範例:
即時示範
using System; namespace Demo { class Program { public int Divide(int num1, int num2) { // local variable in a method int result; result = num1 / num2; return result; } static void Main(string[] args) { // local variable int a = 150; int b = 10; int res; Program p = new Program(); res = p.Divide(a, b); Console.WriteLine("Division Result = {0}", res ); Console.ReadLine(); } } }
Division Result = 15
以上是C# 中變數的作用域的詳細內容。更多資訊請關注PHP中文網其他相關文章!