how can pointer a class?after several time and work and tests, i get it to work a simple test: [code]#include <iostream> //...
how initializate a template class static variable? can i do these: [code]typedef static inline Static;[/code] ? error line: " 'Static' does not name ...
how initializate a template class static variable? i love these way: [code]static inline int FormCount=0;[/code] [code]class Form { public: static ...
how initializate a template class static variable? i can't use it :( [code]class FormBase { public: static int i; FormBase() { i++...
how initializate a template class static variable? The output must be 2. But the Window2 is different, but the Form it is parent class. So how can i us...