pass by reference



Hi,

what is the equivalent of Java approach to this C++ function:

public void myFunc(String &s) {
s = "123";
}

I'd like to define a method where several values can be returned. any
idea?

Angelo

.