sande...@yahoo.com
unread,Sep 14, 2016, 12:21:46 PM9/14/16Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Sign in to report message as abuse
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
I want to solicit the opinion of the Java experts about realizing the out-param capability in Java. Suppose there is a method in a class where I would like to realize the following:
class MyClass {
int myMethod(int inIntParam, int outIntParam, double outDoubleParam) {
// Accepts inIntParam as input
// Updates outIntParam and outDoubleParam
// Returns an int
…
}
…
}
Since primitive types are passed by values, and primitive type wrapper classes are immutable, I am thinking of having outIntParam and outDoubleParam as instance variables in the class, which get set prior to calling myMethod. Then myMethod can make do with only one parameter i.e.
class MyClass {
protected int outIntParam;
protected double outDoubleParam;
int getOutIntParam() {
return outIntParam;
}
double getOutDoubleParam() {
return outDoubleParam;
}
//
// And Settors for these instance variables
// …
int myMethod(int inIntParam) {
// Accepts inIntParam as input
// Updates instance variables in outIntParam and outDoubleParam
// Returns an int
…
}
…
}
Kindly suggest if there is a preferred way to realize the same.
Regards,
Sandeep