class Stu
{
int Age = 20;
String Name ="Xxx";
String Sex ="男";
String ClassName="基础61";
String Like="篮球";
public void Go(String W)
{
System.out.println("我要去"+W+",再见哈~");
}
}
class StuDemo
{
public static void main(String[] args)
{
Stu s= new Stu();
s.Name="习大大";
s.Go("人民大会堂");
}
}
|
|