很简单的一个类的调用.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
using System;
using System.Collections.Generic;
using System.Text;
namespace PrjFunction
{
class Program
{
static void Main(string[] args)
{
Test t = new Test();
t.x = 1;
t.y = 2;
t.mytest();
Console.WriteLine(\"x=\"+t.x);
}
}
class Test
{
public int x;
public float y;
public void mytest()
{
Console.WriteLine(\"This is Test class!!\");
}
}
}
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
如果是自学者,可能很多人会在public和private这里糊涂.
用public是表示公共的意思,其他的类也可以调用这个函数.
而private则表示私有的,只能在内部的方法里被调用,这样,对于一些比较隐私的数值或者不想被别人应用的数值,就可以很好的保护了,因为别人是不能调用这个数值的.
而且现在的内存都比较大,在设置类型的时候,尽量都用double型,float尽量少用. |