C
Cool Guy
In one thread, I do something like: MyObject myObject = new MyObject();
Can I now do the following succesfully in another thread?
if (myObject != null) {
// access myObject
}
Can I now do the following succesfully in another thread?
if (myObject != null) {
// access myObject
}