M
mycwcgr
Unregistered / Unconfirmed
GUEST, unregistred user!
在JAVA中能否象Delphi一样在参数前加一个Var,将值传回来!
下面的程序System.out.println(myto)显示的是null,也就是不能将值取回来!是否在Java中
只能使用 public String get_myto()这样的方式将值取回来!
//-----------------------------------------
public fk() {
String myto;
client_parse_get_conent(myto);
System.out.println(myto);
//这里显示为null
}
class client_parse_get_conent extends client_base {
String filename="cw";
public client_parse_get_conent(String myto ) {
myto=filename;
}
}
下面的程序System.out.println(myto)显示的是null,也就是不能将值取回来!是否在Java中
只能使用 public String get_myto()这样的方式将值取回来!
//-----------------------------------------
public fk() {
String myto;
client_parse_get_conent(myto);
System.out.println(myto);
//这里显示为null
}
class client_parse_get_conent extends client_base {
String filename="cw";
public client_parse_get_conent(String myto ) {
myto=filename;
}
}