tehfr00bshow
07-25-2009, 01:07 PM
ok this is pretty basic but itll teach you things
ok ima give you this code
import java.io
public class javaw {
public int javac = 0;
public void javac {
implements = false;
} else if {
implements = true;
}
public int implements = 0;
when i compile theres 100 errors!
the 100 error rule is know to be a missing closed or open bracket in this case we missed the closed bracket to close up the public void javac
so this is what it'll look like
public void javac {
implements = false;
} else if {
implements = true;
}
} <---- thats what we were missing.
so thats the 100 rule error!
ok thats fixed but theres another problem!
the problem is: what happens if it malfunctions!?!?!
to make it give you the notifacation when it malfunction its supposed to be like:
import java.io
public class javaw {
public int javac = 0;
public void javac {
implements = false;
} else if {
implements = true;
}
public int implements = 0;
} catch (Exception e) {
Misc.println("Critical malfunction closing now! Restart the program!");
}
so thats that i hope this gave you some basic knowledge of java....
[/CODE]
ok ima give you this code
import java.io
public class javaw {
public int javac = 0;
public void javac {
implements = false;
} else if {
implements = true;
}
public int implements = 0;
when i compile theres 100 errors!
the 100 error rule is know to be a missing closed or open bracket in this case we missed the closed bracket to close up the public void javac
so this is what it'll look like
public void javac {
implements = false;
} else if {
implements = true;
}
} <---- thats what we were missing.
so thats the 100 rule error!
ok thats fixed but theres another problem!
the problem is: what happens if it malfunctions!?!?!
to make it give you the notifacation when it malfunction its supposed to be like:
import java.io
public class javaw {
public int javac = 0;
public void javac {
implements = false;
} else if {
implements = true;
}
public int implements = 0;
} catch (Exception e) {
Misc.println("Critical malfunction closing now! Restart the program!");
}
so thats that i hope this gave you some basic knowledge of java....
[/CODE]