no, that means that
if this.running is NOT EQUAL to running (assuming that they're not object. Meaning that they're just a primitive type of variables, then you may use that comparison
PHP Code:
public void test() {
int one = 1;
int two = 2;
int test = 1;
if (one != two) {
System.out.println("test");
// will be executed since they are NOT equal
}
if (one == two) {
System.out.println("test2");
// won't be executed cuz they are NOT equal
}
if (one == test) {
System.out.println("test3");
// will be executed because they are equal
}
}
would that helps you
