Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~802 People Reached
Favorite Forums
Favorite Tags
c++ x 14

6 Posted Topics

Member Avatar for smcguffee

Ok, I'm really getting helpful answers from this site!!! Here's my new C++ question: How much code can go in an initializer list? Can I call new SomeClass() to get a pointer to initialize something even if it wasn't in the original argment list? Can I do math on the …

Member Avatar for StuXYZ
0
98
Member Avatar for smcguffee

Dear all, I'm starting to get the hang of this C++ business, but I have one question that I just realized I don't have an answer to. Suppose I want to call a constructor from within a constructor to reduce redundancy in the parts that are identical. I seem to …

Member Avatar for smcguffee
0
116
Member Avatar for smcguffee

Hi all, I'm gradually starting to make this transition from the world of C to C++, and now that I have a little progress, I have some things that are still a bit confusing to me. One of them is if I nest a class inside another class. If I'm …

Member Avatar for smcguffee
0
121
Member Avatar for smcguffee

I'm sort of duplicating this post because it requested that I start a new thread because I was replying to an old one, but here is a statement that prompted my questions: "Accessors should be const methods at the very least, because the object state isn't changed in the body." …

Member Avatar for smcguffee
0
125
Member Avatar for dflatt

Don't forget stringstream needs a constructor: [url]http://www.cplusplus.com/reference/iostream/stringstream/stringstream/[/url] By the way, that site in general is a great API for C++ with examples as in that case. By the way, note that with C's *scanf or C++'s stringstream, if you ever need to convert a number in scientific notation to a …

Member Avatar for dflatt
0
147
Member Avatar for daviddoria

Ok, I came across this post because of an error I had that was because of a const that was introduced through netbeans automatically generating a getter function for me. When I removed all the const 's from my code, I was fine again. However, Radical Edward seems to be …

Member Avatar for daviddoria
0
195

The End.