Forum: C++ Aug 25th, 2008 |
| Replies: 4 Views: 1,255 I think Windows API is declared in window.h, which is basic API. Other Library surporting multithread like MFC is build on WINDOWS API. I don't know if I express clearly. I 'm from China. |
Forum: C++ Aug 25th, 2008 |
| Replies: 4 Views: 1,023 This is a problem aout "Communication among process". You can solve it by using "singal, mutex,memory share ect" |
Forum: C++ Aug 25th, 2008 |
| Replies: 5 Views: 1,118 You can initial every element to 0 as followed: vector<int> nJingle(8,0;//There are 8 element in this vector obj and every member's value is initialed to zero. |
Forum: C++ Aug 25th, 2008 |
| Replies: 5 Views: 1,118 You must give a initialed num for a vect obj.
For example:
vector<int> nJingle(8);//right
vector<int> nJingle;/erro |