| Article: |
10 Reasons We Need Java 3.0 | |
| Subject: | Include some of the good parts of C++ | |
| Date: | 2002-08-06 06:44:11 | |
| From: | grs19689 | |
|
I am a C++ programmer as well as a Java programmer. I'm always wishing I had some of the features of C++ available when I write Java.
|
||
Showing messages 1 through 1 of 1.
-
Given your subject, I was afraid to read your message...
2002-08-06 07:19:01 ewatkeys [View]



Just like access control, const-ness is one of those nice-to-have features that raises the hurdles to getting a class ready for prime time. A "proper" C++ class is a pain to build. Overloading assignment operators, default constructors, copy constructors, destructors. It makes you not want to create a new class.
A nice part of Java is that you don't need to be a language lawyer to write code that works as a class is expected to.