本帖最后由 曹思敏 于 2013-6-1 08:58 编辑
public class People
{
int height;
String ear;
void speak(String s)
{
System.out.println(s);
}
}
class A
public static void main(String[] args)
{
People coco;
coco=new People();
coco.height=175;
coco.ear="Two ears";
System.out.println("height:"+coco.height);
System.out.println(coco.ear);
coco.speak("Master,shall we go to east");
}
} |