| Author |
in C code how to get instance of class and invoke it's member method
|
walter wang
Ranch Hand
Joined: Jun 02, 2001
Posts: 144
|
|
I saw example of calling class member method but i dont know how to get instance of class in c code
|
public class Walter{
public boolean is_Working_Now(boolean is_boss_Coming){
return is_boss_Coming;
}
|
 |
Cindy Glass
"The Hood"
Sheriff
Joined: Sep 29, 2000
Posts: 8521
|
|
And you are asking this in a JAVA forum?? :roll:
|
"JavaRanch, where the deer and the Certified play" - David O'Meara
|
 |
jason
Greenhorn
Joined: Mar 16, 2003
Posts: 1
|
|
you just do Identifier.Message( arg1, arg2....); Identifier == object name i dont believe its all taht different from java
|
 |
 |
|
|
subject: in C code how to get instance of class and invoke it's member method
|
|
|