The Enchanted Cave 2
Delve into a strange cave with a seemingly endless supply of treasure, strategically choos
4.34 / 5.00 31,296 ViewsGhostbusters B.I.P.
COMPLETE edition of the interactive "choose next panel" comic
4.07 / 5.00 10,082 ViewsAt 12/17/04 06:39 PM, kyle_chamberlain wrote: I feel strange asking this, but is C++ another term for VisualBasic? If not, can someone post a few lines of C++ code?
C++ is not at all like VB.
C++ code:
int main()
{
for(int i = 99; i > 0; i++)
{
cout << i << " bottels of beer on the wall!";
}
return 0;
}
What may man within him hide, though angel on the outward side.
At 12/18/04 03:53 PM, Professor_Rhythm wrote: haha yeah, your bottles are just gonna keep filling up the wall man
Woops! My bad!
Even though there is nothing wrong with an infinite loop of beer! :)
What may man within him hide, though angel on the outward side.
At 12/18/04 09:23 PM, PatternAgainstUser wrote: Thats the quiet possibly the stupidest question i have ever heard.
shut the fuck up noob. You and I... AND EVERY ONE FUCKING ELSE knows that this is not possibly the worst wuestion you have ever fucking heard. If it is, you need to get out of the fucking house fag.
At 12/18/04 09:23 PM, PatternAgainstUser wrote: Thats the quiet possibly the stupidest question i have ever heard.
You're wrong. Let me correct you:
That's quite possibly a question where the topic starter has never heard of "Google."
omg.
Playstation Network tag: muffin-noodle
the empty set
At 12/19/04 06:45 PM, CronoMan wrote: Java LOOKS like C++ at first glance, but it's not.
C++ is a low-level language, Java is one of the most high-level languages you can find.
You must be confusing C++ with C. Java and C++ have almost idnetical syntax structure, just different syntax. They are both high level programming languages; an example of a low level language would be assembly, or turing, to en extent.
The only main difference between Java and C++ is that java is compiled in ByteCode, which is run through the JVM (Java Virtual Machine), and thus is platform independent, wheras C++ is compiled to binary, and runs in DOS.
why the fuck that whenever i say a certain language looks like another people go fucking idiotic and say "oh noez!!! they are completely different!!!11"
SHUT THE FLYING FUCK UP YOU PATHETIC EXCUSES FOR FUCKING HUMAN FUCKING BEEINGS!!!! GODDAMNIT MOTHER FUCKING COCK SUCKING PRICKS!
At 12/19/04 09:59 PM, Misty_Dragon wrote:At 12/19/04 06:45 PM, CronoMan wrote: Java LOOKS like C++ at first glance, but it's not.You must be confusing C++ with C. Java and C++ have almost idnetical syntax structure, just different syntax. They are both high level programming languages; an example of a low level language would be assembly, or turing, to en extent.
C++ is a low-level language, Java is one of the most high-level languages you can find.
I'm not confusing C++ with C. I know the difference, I've been programming in C and C++ for a long time now.
Java is high-level, C++ is low-level. C++ is compiled to native code (ASM) and Java is as you say "compiled" to bytecode. ByteCode needs interpretation, while native code does not.
You can make C++ programs totally independant of API calls, this you can not do with Java. C++ can handle software interrupts, Java can not. C++ can directly allocate memory, Java can not. C++ can run ASM (Absolute Calls), Java can not.
Why would you say C is low-level and C++ is not?
The only difference between those languages is the object orientation of C++.
And if you think Java is identical to C++, you should take a closer look.
And PHP has also "identical" syntax with C++, would you say they are the same? ;)
The only main difference between Java and C++ is that java is compiled in ByteCode, which is run through the JVM (Java Virtual Machine), and thus is platform independent, wheras C++ is compiled to binary, and runs in DOS.
That is a very big difference. Again, Java ByteCode is enterpreted, and this makes it more like a scripting language. ;)
"no sound in ass"
At 12/21/04 12:19 PM, CronoMan wrote: I'm not confusing C++ with C. I know the difference, I've been programming in C and C++ for a long time now.
Java is high-level, C++ is low-level. C++ is compiled to native code (ASM) and Java is as you say "compiled" to bytecode. ByteCode needs interpretation, while native code does not.
The virtual machine's "interpretation " of code is the equivilant of your machine reading native code. While your machine needs to interpret the Bytecode, the VM itself reads it directly, so there is really only one level of difference.
You can make C++ programs totally independant of API calls, this you can not do with Java. C++ can handle software interrupts, Java can not. C++ can directly allocate memory, Java can not. C++ can run ASM (Absolute Calls), Java can not.
Software interrupts in Java are handled in the Exception sub classes ^_^
Why would you say C is low-level and C++ is not?
The only difference between those languages is the object orientation of C++.
Low level means direct "conversation" with the machine. An object oriented program, by definition, is a higher level than non, because it deals with objects, which in turn deal with the machine. (Thus the purpose of object oriented design).
For example, a high level alarm clock would look like this:
AlarmClock (subclass of Clock)
-time
-alarm
+showtime
+showalarm
+setTime
+setAlarm
+readyAlarm
. . . . .
Whereas a low level clock would consist of operations and variables which represent these attribtes and methods (feilds and functions, w/e lol). Even though it's THE SAME CLOCK, one is a high level version, and one is low level. The difference? The higher the level, the more interpretation is done by the compiler.
And if you think Java is identical to C++, you should take a closer look.
And PHP has also "identical" syntax with C++, would you say they are the same? ;)
I never said it was IDENTICAL. However, they have many similarities. Take c++ and turing, or python. Very different. Now compare it to Java, similar structure, eh? No it's not the same, as Spanish, portuguese and Italian are not the same, but they are very similar ~_^
That is a very big difference. Again, Java ByteCode is enterpreted, and this makes it more like a scripting language. ;)
Nonono! Java is Not like java script! why? because there's no script. Java gives you MUCH more control, which is why it isn't one of the highest level languages as you claim. JavaScript and actionScript are much higher, and less flexible.
Sorry, I should have posted earlier, but I has banned for a few days -_-. Anywho, you are right for the most part. Java and C are different levels. However, C++ is not a low level language. Low level languages are written in number or numonics. Examples would eb Machine or assembly language. While C++ does allow direct memory storage, you don't specify where and how it is does. If you did, it would defeat the purpose of it being object oriented.
Personally, I prefer dirtier languages like C and assmbley. I'm simplying stating that my orginal point concerned the fact that they are similar languages, with similar structure, and similar syntax :)
Peace to you, and merry Xmas ^_^
P.S, here's a little graph to help you out ^_^
At 12/19/04 11:49 AM, kyle_chamberlain wrote:At 12/18/04 09:23 PM, PatternAgainstUser wrote: Thats the quiet possibly the stupidest question i have ever heard.shut the fuck up noob. You and I... AND EVERY ONE FUCKING ELSE knows that this is not possibly the worst wuestion you have ever fucking heard. If it is, you need to get out of the fucking house fag.
you, stop whining. to the guy who said its the stupidest question, look around a bit more... theres people asking how to get a boner in the genreal forum all the time :-P
and kyle_chamerblain... that was a pretty dumb duestion, amigo. try a quick google search before bothering the flamers