修改一个简单的Java程序
publicclassBike{//对象的标识符intcolour;intmaterial;inttype;inta;//对象的状态属性//对象的行为voidride()...
public class Bike {
// 对象的标识符
int colour;
int material;
int type;
int a;// 对象的状态属性
// 对象的行为
void ride(){
}
void control(int a){
if(a=number1){
System.out.println("转弯");
}
else if (a=number2){
System.out.println("直行");
}
else (a=number3){
System.out.println("停止");
}
}
public static void main(String[] args) {
int number1 = 1;
int number2 = 2;
int number3 = 3;
int a=new int(3);
a.control();
}
}
2楼的很好,但还有一个错误,系统提示a.control();错误,系统显示如下:
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The method control(int) in the type Bike is not applicable for the arguments () 展开
// 对象的标识符
int colour;
int material;
int type;
int a;// 对象的状态属性
// 对象的行为
void ride(){
}
void control(int a){
if(a=number1){
System.out.println("转弯");
}
else if (a=number2){
System.out.println("直行");
}
else (a=number3){
System.out.println("停止");
}
}
public static void main(String[] args) {
int number1 = 1;
int number2 = 2;
int number3 = 3;
int a=new int(3);
a.control();
}
}
2楼的很好,但还有一个错误,系统提示a.control();错误,系统显示如下:
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The method control(int) in the type Bike is not applicable for the arguments () 展开
展开全部
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Administrator
*/
public class Bike {
// 对象的标识符
int colour;
int material;
int type;
int a;// 对象的状态属性
// 对象的行为
void ride() {
}
void control(int a) {
if (a == number1) {
System.out.println("转弯");
} else if (a == number2) {
System.out.println("直行");
} else if (a == number3) {
System.out.println("停止");
}
}
private int number1 = 1;
private int number2 = 2;
private int number3 = 3;
public static void main(String[] args) {
// int a = new int(3);
// a.control();
Integer a = new Integer(3);
new Bike().control(a);
}
}
number1、number2、number3必须要设置为全局变量才可以使用。
int a = new int(3); int 是一个数据类型,不是一个类。所以不能这么用。
应用外部的非静态的变量要使用类的对像。
更改之后, 结果正确!!!
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Administrator
*/
public class Bike {
// 对象的标识符
int colour;
int material;
int type;
int a;// 对象的状态属性
// 对象的行为
void ride() {
}
void control(int a) {
if (a == number1) {
System.out.println("转弯");
} else if (a == number2) {
System.out.println("直行");
} else if (a == number3) {
System.out.println("停止");
}
}
private int number1 = 1;
private int number2 = 2;
private int number3 = 3;
public static void main(String[] args) {
// int a = new int(3);
// a.control();
Integer a = new Integer(3);
new Bike().control(a);
}
}
number1、number2、number3必须要设置为全局变量才可以使用。
int a = new int(3); int 是一个数据类型,不是一个类。所以不能这么用。
应用外部的非静态的变量要使用类的对像。
更改之后, 结果正确!!!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
二楼正确 你的control()方法是该类Bike的方法,所有你必须实例化一个Bike的对象,也就是new个.才可以调用类中的方法
并不是 int a=new int(3); 而是Bike a = new Bike();(没有复写父类的构造方法的时候)
如果你复写构造方法
Bike(int a) {
this.a = a;
}
那么new的时候就要传参数进去Bike a = new Bike(3);
并不是 int a=new int(3); 而是Bike a = new Bike();(没有复写父类的构造方法的时候)
如果你复写构造方法
Bike(int a) {
this.a = a;
}
那么new的时候就要传参数进去Bike a = new Bike(3);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class Bike {
int colour;
int material;
int type;
int a;
Bike(int a) {
this.a = a;
}
void ride() {
}
void control(){
if(a == 1){
System.out.println("转弯");
}
else if (a == 2){
System.out.println("直行");
}
else if (a == 3){
System.out.println("停止");
}
}
public static void main(String[] args) {
Bike a = new Bike(3);
a.control();
}
}
int colour;
int material;
int type;
int a;
Bike(int a) {
this.a = a;
}
void ride() {
}
void control(){
if(a == 1){
System.out.println("转弯");
}
else if (a == 2){
System.out.println("直行");
}
else if (a == 3){
System.out.println("停止");
}
}
public static void main(String[] args) {
Bike a = new Bike(3);
a.control();
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public static void main(String[] args) {
int number1 = 1;
int number2 = 2;
int number3 = 3;
Bike a=new Bike();
a.control(1);
a.control(2);
a.control(3);
}
}
2 3楼错误的;类无构造器 怎么能在NEW的时候传参?只能在方法里传参
int number1 = 1;
int number2 = 2;
int number3 = 3;
Bike a=new Bike();
a.control(1);
a.control(2);
a.control(3);
}
}
2 3楼错误的;类无构造器 怎么能在NEW的时候传参?只能在方法里传参
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
a.control();改为control(a);并且control函数中的number1,2,3直接写为1,2,3.你这里的number1等根本传不到函数control中
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询