题目:1、编写电池类(Cell):具有品牌属性,可以续电 2、编写测试类(TestCell) 我的代码: public class CELL { String brond; public void show(){ System.out.println("电池品牌:"+brond); } public stat... 题目:1、编写电池类(Cell):具有品牌属性,可以续电
2、编写测试类(TestCell)
我的代码:
public class CELL {
String brond;
public void show(){
System.out.println("电池品牌:"+brond);
}
public static void main(String[] args) {
CELL bro=new CELL();
bro.brond="双鹿";
bro.show();
}
}
测试类 应该怎么写?
另外写一个public的TestCell类,main方法移到TestCell中就行了。