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
Ranked #107.65K
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for elspork

Expressions like [code]Base( &theObject );[/code] don't behave the way you expect them to. This expression invokes Base's constructor to create a new temporary instance of Base, which is immediately destroyed at then end of the expression, since it isn't in scope (it's unnamed). It has no effect on the current …

Member Avatar for barfoo
-1
1K

The End.