调用METHOD可有几个参数IN,但用RETURN只能得到一个OUT参数.
例如: private String myMethod( int inValue1, double inValue2 )
{
String outValue;
.....
return outValue;
}
请问:除了
1:在类中定义一个全局变量,从而在myMethod中给这个全局变量赋值
2: 定义成多个METHOD,
如: myClass.getOutValue1( int inValue1, double inValue2 ),
myClass.getOutValue2( int inValue1, double inValue2 )
外,还有什么更聪明点的方法吗?谢先
例如: private String myMethod( int inValue1, double inValue2 )
{
String outValue;
.....
return outValue;
}
请问:除了
1:在类中定义一个全局变量,从而在myMethod中给这个全局变量赋值
2: 定义成多个METHOD,
如: myClass.getOutValue1( int inValue1, double inValue2 ),
myClass.getOutValue2( int inValue1, double inValue2 )
外,还有什么更聪明点的方法吗?谢先