Re: How do java programmers cope with java missing c++ const?
- From: "VisionSet" <spam@xxxxxxxxxxxx>
- Date: Tue, 28 Feb 2006 20:27:50 GMT
"Jeffrey Schwab" <jeff@xxxxxxxxxxxxxxxx> wrote in message
news:pe0Nf.27304$915.8884@xxxxxxxxxxxxxxxxxxx
Vitaly wrote:
C++ const in java is final!!!
No, it's not.
class Foo {
private final StringBuilder builder = new StringBuilder();
void methodToCallAnyTimeILike() {
builder.append("Not particularly constant is it really?");
}
}
--
Mike W
.
- Follow-Ups:
- Re: How do java programmers cope with java missing c++ const?
- From: Thomas Hawtin
- Re: How do java programmers cope with java missing c++ const?
- References:
- How do java programmers cope with java missing c++ const?
- From: josh . s17
- Re: How do java programmers cope with java missing c++ const?
- From: Vitaly
- Re: How do java programmers cope with java missing c++ const?
- From: Jeffrey Schwab
- How do java programmers cope with java missing c++ const?
- Prev by Date: Re: Using interfaces "everywhere" due to (EMF) modelling framework
- Next by Date: Re: Servlet error reading properties file in same dir
- Previous by thread: Re: How do java programmers cope with java missing c++ const?
- Next by thread: Re: How do java programmers cope with java missing c++ const?
- Index(es):
Relevant Pages
|