class  Hello
{
public static void main(String[] args) 
{
stu s=new stu();
s.sName="Zhang Fei";
s.sSex="";
s.intro();
}
}
class stu
{
String sName;
String sSex;
public void intro()
{
sSex=sSex=="Male"?"男":"Female" ;
System.out.println("Hello, I'm "+sName+" , I am a "+sSex);
}
};
第一个是Hello world,第二个便是这个。贴在这留个记念。