class 梅花{
private boolean 香 = false;
public void set香(boolean 香不香){
香 = 香不香;
}
public boolean is香(){
return 香;
}
}
class 气候{
public static 梅花 苦寒(梅花 flower){
梅花set香(true);
}
}
public class Test梅花{
public static void main(String args){
梅花 flower = new 梅花();
//得到香梅花
气候.苦寒(flower);
System.out.println("梅花味道:" + flower.is香());
}
}