0 Members and 1 Guest are viewing this topic.
Quote from: jrgp on September 30, 2010, 03:36:50 pmOnly anime shows I've felt any interest in over the years are Pokemon (original TV series) and various hentai.so clearly jgrp is a goddamn anime connoisseur. his opinion might as well be law here.
Only anime shows I've felt any interest in over the years are Pokemon (original TV series) and various hentai.
Best Admin: jrgp, he's like the forum mom and a pet dog rolled into one.
Pretty much the only thing that sucks about starting out with Java is setting up the classpath so that you can compile and run your programs from any directory on your PC.
while file_text != file_finish: file_text = raw_input("Enter text: ") if file_text == file_finish: # close the file file.close break # write out the input from the keyboard to the file file.write(file_text) file.write("\n") file.close()
Furthermore, (IIRC), it was the first language to be created for the object-oriented programming model, which is used everywhere today.
bike maibike = new bike(); maibike.setWeight(); //method 'invoker'
int currentWeight = 240;int setWeight() {(Code in here. Probably input detection so the user can set the currentWeight variable)}
- Since it's cross platform, you can't access any of the underlying OS system calls, unlike with C++ where you have access to all the zillions of C libraries for interacting with the OS. The fact that it didn't have functionality for this was kinda disappointing.
Quote from: {LAW} Gamer_2k4 on February 22, 2011, 10:48:20 amFurthermore, (IIRC), it was the first language to be created for the object-oriented programming model, which is used everywhere today. Er? OOP goes back a very long way. In fact, C++'s working name was "C with Classes." I assume that bjarn stroupstrup (C++'s creator) found out about "classes" from somewhere else and felt like implementing them in C.
Quote from: jrgp on February 22, 2011, 05:35:46 pmQuote from: {LAW} Gamer_2k4 on February 22, 2011, 10:48:20 amFurthermore, (IIRC), it was the first language to be created for the object-oriented programming model, which is used everywhere today. Er? OOP goes back a very long way. In fact, C++'s working name was "C with Classes." I assume that bjarn stroupstrup (C++'s creator) found out about "classes" from somewhere else and felt like implementing them in C.Of course, but the very naming of C++ proves my point. "C with Classes" means "procedural language with OO hacked in." Java was intended to be OO from the start. Sure, other languages could use objects, but they're at the heart of Java.
Every topic someone makes about learning programming languages descends into a brawl of people debating over small definitions of each language. He just wants to know what a good one is to start with.
My view, Java is probably a good choice if you're keen to learn one.
What's so special about OOP? It seems like everyone is gigged out about it.