廣州南沙軟體園面試試題及答案(C++部分) (轉)

worldblog發表於2007-12-29
廣州南沙軟體園面試試題及答案(C++部分) (轉)[@more@]

  廣州南沙園面試試題(C++部分)

要求15分鐘完成。
1、簡述ICQ或OICQ的工作原理。
2、下C++如何申請?
3、怎麼使用VC++獲得一個命令按鈕的控制程式碼?
4、和C++有什麼區別?
5、的常見目錄有什麼?
6、有什麼辦法可以讓一個一直執行並能夠處理多個的login和logout操作?
7、
typedef struct{
  void (*ver)();
  int *p1;
}abc;

abc s={f1,&p1}, *s1;
int p1;

void f1(int *a){……}

Please use the pointer s1 reference(call) the function f1 and pass the parameter p1 to the function. The call syntax should not contain f1 and p1.


以下的答案是根據眾位網友的意見綜合而成,是否正確請自行驗證。

1、Socket TCP or UDP

2、new or alloc

3、GetWindow()

4、Java 沒有指標

5、usr,game,bin

6、多執行緒

7、 s1 = &s;
  s1->ver( (int*)(s1+1));


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-996073/,如需轉載,請註明出處,否則將追究法律責任。

相關文章