在java中我们对属性设置值或者获取值是通过set和个头方法的,在C#中有点不同,在java中用习惯了,所以有点不适应。看代码

public class studyingClass
    {
      private float width=2;     
      public float Width   
      {   
          get { return this.width; }
          set { width = value; }   
      }           
    }
java

public class Studyingclass
{
private float width=2;
public float getWidth()
{return width;}
public void setWidth(float value)
{this.width=value;}
}
明白了这个就好用了。