Functional or OOP

laingsoft

Formerly SteamDNT
In this thread we discuss why OOP is a terrible model and that it shouldn't be taught in schools.
 
String[] words = new String(){"Java","For","The","Win"};
for(int i = 0; i < words.length; i++){
System.out.print(words + " ");
}

words = new String(){"OOP","Is","OP"};
for(int i = 0; i < words.length; i++){
System.out.print(words + " ");
}
 
Back
Top