1
class MyClass {
   int value;
}
public MyClass test(){
   MyClass mc;
   myMethod(mc, 100);
   if (mc!=null) {
      mc = mc.value;
      return mc;
   }
   return mc;
}
public int myMethod(MyClass mc, int a) {
   mc.value = a + 10;
   return mc;
}

参考にMCを作りたいと思います。Objective-c が次のような場合:

public MyClass test(){
   MyClass *mc;
   myMethod(&mc, 100);

}

私を助けてください。どんな答えでも大歓迎です。よろしくお願いします。

4

1 に答える 1

1

Java では、ポインターの代わりに参照変数を使用します。これこれを見て

class MyClass 
{
   int value;

/*All methods have to belong to a class*/

public MyClass test()
{
 /*MyClass mc; you don't need to pass this to assign value the value will be 
 assigned to the data members of the object(reference variable) which calls the
 function*/       

MyClass mc = myMethod(100);
return mc;
}

public MyClass myMethod(int a) 
{
   value = a + 10;
   return this; //This 'this' will return the current object
}
}
于 2013-04-01T10:15:25.633 に答える