以下筆試題目是普天面試最?嫉念}目,現(xiàn)在分享給大家練習(xí)。
1.實(shí)現(xiàn)雙向鏈表刪除一個節(jié)點(diǎn)P,在節(jié)點(diǎn)P后插入一個節(jié)點(diǎn),寫出這兩個函數(shù)。
2.寫一個函數(shù),將其中的\t都轉(zhuǎn)換成4個空格。
3.Windows程序的入口是哪里?寫出Windows消息機(jī)制的流程。
4.如何定義和實(shí)現(xiàn)一個類的成員函數(shù)為回調(diào)函數(shù)?
5.C++里面是不是所有的動作都是main()引起的?如果不是,請舉例。
6.C++里面如何聲明const void f(void)函數(shù)為C程序中的庫函數(shù)?
7.下列哪兩個是等同的
int b;
A const int a = &b;
B const int a = &b;
C const int const a = &b;
D int const const a = &b;
8.內(nèi)聯(lián)函數(shù)在編譯時是否做參數(shù)類型檢查?
void g(base & b){
b.play;
}
void main(){
son s;
g(s);
return; }