aspose file tools
The moose likes Java in General and the fly likes in C code how to get instance of class and invoke it's member method Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "in C code how to get instance of class and invoke it Watch "in C code how to get instance of class and invoke it New topic
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
 
I agree. Here's the link: http://zeroturnaround.com/jrebel/download
 
subject: in C code how to get instance of class and invoke it's member method
 
Similar Threads
Difference between instace initializers and the member initializers
Help, How much documentation is appropriate??
double indirection
Object.class
Confused with protected access