hi, just curious and i think it is important that one should be clear abt it to be called a java and c++ pro... thankyou
[This message has been edited by gayathri bhushan (edited January 29, 2001).]
Cindy Glass
"The Hood"
Sheriff
Joined: Sep 29, 2000
Posts: 8521
posted
0
Java is platform independant and c++ is not. Java is easier to learn and use that c++ making it less expensive for a company to invest in. I guess the lack of pointers is a big contributer to this. Java is less prone to difficult to solve bugs (probably due to above) - this is just hearsay. You can get a Java Compiler and RTE for free. JavaRanch is more fun than any c++ site that I have found.
"JavaRanch, where the deer and the Certified play" - David O'Meara
Originally posted by Carl Trusiak: One thing is the removal of pointers, This helps prevent the exceptions that occur due to improper amangement of them.
Does this also pose difficulty in implementing some thing that could have been done quite simply in C++ ?
------------------ Manish.
Manish
Frank Garrison
Greenhorn
Joined: Jan 28, 2001
Posts: 7
posted
0
Uh, did anybody forget processor control?
once you stop trying so hard things get easy!
gayathri bhushan
Ranch Hand
Joined: Jan 29, 2001
Posts: 39
posted
0
hi guys, what is processor control? Is it java related or general... i've no clue.....
ryan burgdorfer
Ranch Hand
Joined: Jan 24, 2001
Posts: 219
posted
0
Don't forget the wonderful Garbage Collector! This all but eliminates memory leaks, a common source of errors in C++. ~Ryan