Guest User

Untitled

a guest
Apr 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public class SmallTest {
  2.  
  3. public static void main(String[] args) {
  4.  
  5. School school1 = new School("somename", "someplace");
  6. School school2 = new School("somename", "someplace");
  7.  
  8. System.out.println(school1.equals(school2));
  9. System.out.println(school1.equals(null));
  10. }
  11. }
  12.  
  13. Error:
  14. >java SmallTest.class
  15. Fehler: Hauptklasse SmallTest.class konnte nicht gefunden oder geladen werden
Add Comment
Please, Sign In to add comment