请大哥们帮忙看下 谢谢了
要求编写方法swap( )用来交换A类对象a的两个成员变量的值。class A{
int a1,a2,temp;
A(int i,int j){
a1=i;
a2=j;
float swap(){
temp=a1;
a1=a2;
temp=a2;
}
}
}
小弟新手,最初想法是这样写的 但不知哪里错了 想请教大哥们下 麻烦了 谢谢
----------------解决方案--------------------------------------------------------
float swap(){
temp=a1;
a1=a2;
temp=a2;
}
返回值为空,应该声明为void,即
void swap(){
temp=a1;
a1=a2;
temp=a2;
}
----------------解决方案--------------------------------------------------------
不行啊 还是运行不了
----------------解决方案--------------------------------------------------------
以下是引用风影空在2010-4-17 23:14:02的发言:
不行啊 还是运行不了
你要写一个main方法才能运行 不行啊 还是运行不了
----------------解决方案--------------------------------------------------------
注意了,系统的默认库函数里已经有了一个swap函数,
你可以试试,应该是在stdlib里头,是不是因为这个原因呢?
----------------解决方案--------------------------------------------------------
回复 4楼 lampeter123
犀利哥 能不能具体点 麻烦咯----------------解决方案--------------------------------------------------------
我现在自己已经改成了
import java.stdlib.*;
class B{
int a1,a2,temp;
B(int i,int j){
a1=i;
a2=j;
float swap(){
temp=a1;
a1=a2;
temp=a2;
}
public class A{
public static void main(String args[]){
B b1=new B(10,20);
b1.swap();
System.out.println(b1);
}
}
}
}
还是不行哦! 不知道哪里错了 希望大家帮帮忙 麻烦大家咯
----------------解决方案--------------------------------------------------------
class B {
int a1, a2, temp;
B(int i,int j){
a1=i;
a2=j;
}
public void swap(){
temp = a1;
a1=a2;
a2 = temp;
}
public String toString() {
return "a1=" + a1 + " a2=" + a2;
}
}
public class A{
public static void main(String[] args) {
B b1=new B(10,20);
b1.swap();
System.out.println(b1);
}
}
----------------解决方案--------------------------------------------------------