小王本来体重70kg,经过减肥,体重降到45kg,从这个问题领域中识别对象、类、属性、状态和状态的变化。1)类:人。2)对象:小王。3)属性:体重4)状态:70kg5)状态的变化:小王的减肥行为导致体重下降。 class people { String name; int weight; public people() { } public void reduce() { int t = weight; weight -= 25; System.out.println(name + "的体重由原来的" + t + "kg减到" + weight + "kg"); } public static void main(String[] args) { people pp=new people(); pp.name="小王"; pp.weight=70; pp.reduce(); } }
4、小王本来体重70kg,经过减肥,体重降到45kg,试从这个问题领域中识别对象、类、属性、状态和状态的变化。 1) 类:人。 2) 对象:小王。 3) 属性:体重。 4) 状态:70kg。
5) 状态的变化:小王的减肥行为导致体重下降。
class people { String name; int weight; public people(){ } public void reduce(){ int t=weight; weight-=25; System.out.println(name+"的体重由原来的"+t+"kg减到"+weight+"kg"); }
public static void main(String[] args) { people pp=new people(); pp.name="小王"; pp.weight=70; pp.reduce(); } }
时间: 2024-12-27 19:39:18