A.class a{int x=0;int y=1;}
B.class b{int x=0;int y=1;};
C.class c{intx;int y;}
D.class d{intx;int y;};
您可能感興趣的試卷
你可能感興趣的試題
A.p=head->next;head->next=head->next->next;delete p;
B.head->next=head->next->next;p=head->next;delete p;
C.p=head;head=head->next;delete p;
D.head=head->next;p=head;delete p;
A.q=p;delete p;
B.p=q;delete q;
C.q->next=p->next;delete p;
D.p->next=q->next;delete q;
A.s->next=head;head=s;
B.s->next=head->next;head->next=s;
C.head=s;s->next=head;
D.head->next=s;s->next=head->next;
A.q=s->next;s=p->next;
B.q->next=s;s->next=p;
C.s=p->next;q=s->next;
D.s->next=p;q->next=s;
A.p->next=s;s->next=p->next;
B.s->next=p-next;p->next=s;
C.p=s->next;s=p->next;
D.s=p->next;p=s->next;
最新試題
對(duì)于只存儲(chǔ)一個(gè)基本類(lèi)型數(shù)據(jù)的指針,使用new為其動(dòng)態(tài)分配的語(yǔ)法格式為()。
()可以看作是符號(hào)化了的機(jī)器語(yǔ)言,使用助記符編寫(xiě)程序。
C++一般的程序都要具有兩條語(yǔ)句,這兩條語(yǔ)句為()和using namespace std。
當(dāng)不同類(lèi)型的量進(jìn)行混合算數(shù)運(yùn)算時(shí),可以在程序中使用強(qiáng)制類(lèi)型轉(zhuǎn)換運(yùn)算符時(shí)static_cast或()。
在面向?qū)ο蟪绦蛟O(shè)計(jì)中,將一組數(shù)據(jù)和這組數(shù)據(jù)有關(guān)的操作集合組裝在一起形成對(duì)象,這個(gè)過(guò)程叫()。
()是所有C++程序開(kāi)始執(zhí)行的入口。
使用string類(lèi)時(shí),在程序中必須包含這個(gè)類(lèi)的頭文件,使用的語(yǔ)句為()。
static_cast的功能是將一種數(shù)據(jù)類(lèi)型轉(zhuǎn)換成另一種數(shù)據(jù)類(lèi)型,其使用格式為()。
兩個(gè)以上的函數(shù),具有相同的函數(shù)名,但是形參的個(gè)數(shù)或者類(lèi)型不同,編譯器根據(jù)實(shí)參和形參的類(lèi)型及個(gè)數(shù)的最佳匹配,自動(dòng)確定調(diào)用哪一個(gè)函數(shù),這就是()。
運(yùn)算符new還可以用來(lái)對(duì)數(shù)組進(jìn)行動(dòng)態(tài)分配,這時(shí)需要在數(shù)據(jù)類(lèi)型后面添加(),并在其中指明所要分配的數(shù)組元素個(gè)數(shù)。