三角形方法有 3 个实例变量。诠释侧1,侧2,侧3;
他们给了我需要制作为公共三角形的方法(int s1,int s2,int s3)
我是否将其声明为:
public class triangle {
private int s1;
private int s2;
private int s3;
}
或者
public class triangle (int s1, int s2, int s3) {
}
谢谢
我把这个和构造函数混在一起了。想通了,谢谢各位。