在我看来(本人是C#初学者)字段实际上类似一个变量,或者就直接说字段就是一个变量。相应的属性也可以看做是一个变量,只不过多了一些限制而已。usingSystem;usingSyst 在我看来(本
在我看来(本人是C#初学者)字段实际上类似一个变量,或者就直接说字段就是一个变量。相应的属性也可以看做是一个变量,只不过多了一些限制而已。
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;
namespace l003{ class 属性的用法 { public int _a; public int A { set { if (value 100 ) { MessageBox.Show("不合法!"); } else { this._a = value; } } get { return _a; } } public void say() { A = 500; MessageBox.Show(A.ToString()); } }}
c#中字段和属性的区别