2009年1月14日 星期三

C# 類別、建構子、方法

//類別的建構
class ABC
{
//類別的屬性
int c=0;
int d=0;
string e="";

//建構子(名稱一定和 類別名稱相同)
public ABC( )
{
d=1;
c=2;
}

public ABC(int i )
{
d=1;
c=i;
}

public ABC(int i,string j , int k )
{
c=i;
e=j;
d=k;
}

//方法的使用
public string PLAY( )
{
c++;
d++;
return d;
}

public string PLAY2(int i )
{
c=c+i;
return c.tostring;
}
}

ABC xx = new ABC(4 );
msgbox( xx.PLAY2(6 ));

沒有留言:

張貼留言