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
~558 People Reached
Favorite Forums
Favorite Tags
c++ x 6

3 Posted Topics

Member Avatar for Wenshere

Compiler doesn't allow to convert pointer ( operator new always returns pointer ) to array type ( char* [13] ), so only way is to declare pointer: char** a=new char*[13]; a[0]="qwerty"; delete[] a;

Member Avatar for Dogtree
0
113
Member Avatar for curly3top
Member Avatar for admdvv

At runtime I obtain an instance of descendant of TObject (for example its name is TGoodForm). The definition of TGoodForm is unknown at compile time (I know that it is TGoodForm from TObject::ClassName()). [B]The question: how to create new instance of TGoodForm ?[/B] In another words, can I get address …

Member Avatar for admdvv
0
229

The End.