Tagged Questions
0
votes
0answers
113 views
How to reach to object reference itself
newDt.importRow(dt.dataSource[i]);
when I call above I want to reach the object's itself in the block below. I mean I want to reach to countnumber of newDt object with getCount() methods. I tried ...
0
votes
2answers
135 views
Sending a class instance through a static reference member in a small chat client
I am building a small chat-room app in Java.
What I am trying to do here is to send the current class ClientGUI instance (this) through a static ClientGUI reference member. The ServerApplication ...