已閱讀5頁(yè),還剩4頁(yè)未讀, 繼續(xù)免費(fèi)閱讀
版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
一、選擇題 1、重載函數(shù)在調(diào)用時(shí)選擇的依據(jù)中 ,錯(cuò)誤的是 A參數(shù)個(gè)數(shù) B參數(shù)類(lèi)型 C函數(shù)名字 D.函數(shù)類(lèi)型 2、有關(guān)構(gòu)造函數(shù)的說(shuō)法不正確的是 A.構(gòu)造函數(shù)名字和類(lèi)的名字一樣 B.構(gòu)造函數(shù)在說(shuō)明變量時(shí)自動(dòng)執(zhí)行 C.構(gòu)造函數(shù)無(wú)任何函數(shù)類(lèi)型 D.構(gòu)造函數(shù)有且只有一個(gè) 3、下列關(guān)于 C+函數(shù)的敘述中,正確的是 ( )。 A)每個(gè)函數(shù)至少要具有一個(gè)參數(shù) B)每個(gè)函數(shù)都必須返回一個(gè)值 C)函數(shù)在被調(diào)用之前必須先聲明 D)函數(shù)不能自己調(diào)用自己 4、下列關(guān)于類(lèi)和對(duì)象的敘述中,錯(cuò)誤的是 ( )。 A)一個(gè)類(lèi)只能有一個(gè)對(duì)象 B)對(duì)象是類(lèi)的具體實(shí)例 C)類(lèi)是對(duì)某一類(lèi)對(duì)象的抽象 D)類(lèi)和對(duì)象的關(guān)系是一種數(shù)據(jù)類(lèi)型與變量的關(guān)系 5、在 C+中,用于實(shí)現(xiàn)運(yùn)行時(shí)多態(tài)性的是 ( )。 A)內(nèi)聯(lián)函數(shù) B)重載函數(shù) C)模板函數(shù) D)虛函數(shù) 6、下列關(guān)于運(yùn)算符重載的敘述中,正確的是 ( )。 A)通過(guò)運(yùn)算符重載,可以定義新的運(yùn)算符 B)有的運(yùn)算符只能作為成員函數(shù)重載 C)若重載運(yùn)算符 +,則相應(yīng)的運(yùn)算符函數(shù)名是 + D)重載二元運(yùn)算符時(shí),必須聲明兩個(gè)形參 7、對(duì)于語(yǔ)句 coutxendl;錯(cuò)誤的是描述是 ( )。 A)“cout” 是一個(gè)輸出流對(duì)象 B)“endl” 的作用是輸出回車(chē)換行 C)“x” 是一個(gè)變量 D)“” 稱(chēng)作提取運(yùn)算符 8、有如下類(lèi)聲明,則類(lèi) MyDERIVED 中保護(hù)的數(shù)據(jù)成員和成員函數(shù)的個(gè)數(shù)是 ( )。 class MyBASE private: int k; public: void set(int n) k=n; int get( )const return k; ; class MyDERIVED: protected MyBASE protected: int j; public: void set(int m, int n) MyBASE:set(m); j=n; int get( ) const return MyBASE:get( )+j; ; A)4 B)3 C)2 D)1 9、下列關(guān)于派生類(lèi)構(gòu)造函數(shù)的描述中,錯(cuò)誤的是 A派生類(lèi)構(gòu)造函數(shù)應(yīng)包含直接基類(lèi)和所有間接基類(lèi)的構(gòu)造函數(shù) B派生類(lèi)構(gòu)造函數(shù)僅包含直接基類(lèi)構(gòu)造函數(shù)和其他(如子對(duì)象)類(lèi)構(gòu)造函數(shù)等 C派生類(lèi)構(gòu)造函數(shù)通常帶有成員初始化表 D派生類(lèi)默認(rèn)構(gòu)造函數(shù)中隱含包括直接基類(lèi)的默認(rèn)構(gòu)造函數(shù) 10、已知在一個(gè)類(lèi)體中包含如下函數(shù)原型 : Volume operator-(Volume)const;, 下列關(guān)于這個(gè)函數(shù)的敘述中 , 錯(cuò)誤的是 ( )。 A)這是運(yùn)算符 -的重載運(yùn)算符函數(shù) B)這個(gè)函數(shù)所重載的運(yùn)算符 是一個(gè)一元運(yùn)算符 C)這是一個(gè)成員函數(shù) D)這個(gè)函數(shù)不改變類(lèi)的任何數(shù)據(jù)成員的值 11、執(zhí)行如下的程序段后,輸出結(jié)果是 ( )。 cout.fill(*); cout.width(6); cout.fill(#); cout 123 endl; A)#123 B)123# C)*123 D)123* 12、在下列函數(shù)原型中 , 可以作為類(lèi) AA構(gòu)造函數(shù)的是 ( )。 A)void AA(int); B)int AA(); C)AA(int)const; D)AA(int); 13、下面四個(gè)選項(xiàng)中, ( )是用來(lái)聲明虛函數(shù)的。 A)virtual B)public C)include D)using namespace 14、實(shí)現(xiàn)運(yùn)行時(shí)的多態(tài)性要使用 ( )。 A)重載函數(shù) B)構(gòu)造函數(shù) C)析構(gòu)函數(shù) D)虛函數(shù) 15、要實(shí)現(xiàn)動(dòng)態(tài)聯(lián)編,必須通過(guò) ( )調(diào)用虛函數(shù)。 A)對(duì)象指針 B)成員名限定 C)對(duì)象名 D)派生類(lèi)名 16、以下 ( )成員函數(shù)表 示純虛函數(shù)。 A)virtual int vf(int); B)void vf(int)=0; C)virtual void vf()=0; D)virtual void vf(int) 17、在每個(gè) C+程序中都必須包含有這樣一個(gè)函數(shù),該函數(shù)的函數(shù)名為 。 A. main B. MAIN C. name D. function 18、設(shè) x和 y均為 bool量,則 x&y為真的條件是 。 A. 它們均為真 B. 其中一個(gè)為真 C. 它們均為假 D. 其中一個(gè)為假 19、下面的哪個(gè)保留字不能作為函數(shù)的返回類(lèi)型? 。 A. void B. int C. new D. long 20、假定 a為一個(gè)整型數(shù)組名,則元素 a4的字節(jié)地址為 。 A. a+4 B. a+8 C. a+16 D. a+32 21、假定 AB為一個(gè)類(lèi),則執(zhí)行 “AB a(4) , b3 , * p2 ;” 語(yǔ)句時(shí),自動(dòng)調(diào)用該類(lèi)構(gòu)造函數(shù)的次數(shù)為 。 A. 3 B. 4 C. 6 D. 9 22、 假定要對(duì)類(lèi) AB定義加號(hào)操作符重載成員函數(shù),實(shí)現(xiàn)兩個(gè) AB類(lèi)對(duì)象的加法,并返回相加結(jié)果,則該成員函數(shù)的聲明語(yǔ)句為: 。 A. AB operator+(AB & a , AB & b) B. AB operator+(AB & a) C. operator+(AB a) D. AB & operator+( ) 23、有如下類(lèi)聲明 : class XA private: int x; public: XA(int n) x=n; ; class XB: public XA private: int y; public: XB(int a,int b); ; 在構(gòu)造函數(shù) XB的下列定義中,正確的是 ( )。 A)XB:XB(int a,int b): x(a),y(b) B)XB:XB(int a,int b): XA(a),y(b) C)XB:XB(int a,int b): x(a),XB(b) D)XB:XB(int a,int b): XA(a),XB(b) 24、在表達(dá)式 x+y*z中, + 是作為成員函數(shù)重載的運(yùn)算符, * 是作為非成員函數(shù)重載的運(yùn)算符。則 operator+ 有 個(gè)參數(shù), operator* 有 參數(shù)。 ( ) A)2、 2 B)2、 1 C)1、 2 D)1、 1 25、應(yīng)在下列程序劃線處填入的正確語(yǔ)句是 ( )。 class Base public: void fun()coutBase:funendl; ; class Derived:public Base void fun() /顯示調(diào)用基類(lèi)的函數(shù) fun() coutDerived:funfun(); 26、下列關(guān)于繼承的描述中,正確的是 A.繼承不是類(lèi)之間的一種關(guān)系 B.C+語(yǔ)言?xún)H支持單一繼承 C.繼承會(huì)增加程序的冗余性 D.繼承是面向?qū)ο蠓椒ㄖ幸粋€(gè)很重要的特性 27、在 int b3=1,3,2,4,5,6,0中 ,a22的值是 A. 0 B. 5 C.6 D.2 28、下列給字符數(shù)組進(jìn)行的初始化中 ,正確的是 A. char s1=abcd; B.char s23=xyz; C. char s3=a,x,y; D.char s423=xyz,mnp; 29、已知 : int a,&ra=a;關(guān)于 ra的描述中正確的是 A. ra 是 int型變量 a的地址值 B.a是 int型變量 ra的地址值 C. ra 是 int型變量 a的引用 D. ra 是 int型變量 a的指針 30、對(duì)于 int *pa5;的描述 ,正確的是 A. pa 是一個(gè)指向數(shù)組的指針 ,所指向的數(shù)組是 5個(gè) int型元素 B. pa 是一個(gè)指向某數(shù)組中第 5 個(gè)元素的指針 ,該元素是 int型變量 C. pa5表示某個(gè)數(shù)組中的第 5個(gè)元素的值 D. pa 是一個(gè)具有 5個(gè)元素的指針數(shù)組 ,每個(gè)元素是一個(gè) int型指針 31、有關(guān)類(lèi)的說(shuō)法不正確的是 A類(lèi)是一種用戶(hù)自定義的數(shù)據(jù)類(lèi)型 B. 類(lèi)中的成員函數(shù)可 以存取類(lèi)中的私有數(shù)據(jù) C. 在類(lèi)中,如果不作特別說(shuō)明,所有的數(shù)據(jù)均為私有類(lèi)型 D. 在類(lèi)中,如果不作特別說(shuō)明,所有的成員函數(shù)均為公有類(lèi)型 32、 C+語(yǔ)言中規(guī)定函數(shù)的返回值的類(lèi)型是由 A return 語(yǔ)句中的表達(dá)式類(lèi)型所決定 B 調(diào)用該函數(shù)時(shí)的主調(diào)用函數(shù)類(lèi)型所決 C 調(diào)用該函數(shù)時(shí)系統(tǒng)臨時(shí)決定 D 在定義該函數(shù)時(shí)所指定的函數(shù)類(lèi)型所決定 33、有一個(gè) int類(lèi)型變量 ,在程序中頻繁使用 ,最好定義它為 A register B auto C extern D static 34、如果 a=1,b=2,c=3,d=4,則條件表達(dá)式 ab?a:cd?c:d 的值為 A 1 B 2 C 3 D 4 35、下列運(yùn)算符中,在 C+中不能重載運(yùn)算符是 A?: B + C - D = 36、如果一個(gè)類(lèi)至少有一個(gè)純虛函數(shù),那么就稱(chēng)該類(lèi)為 A抽象類(lèi) B虛基類(lèi) C派生類(lèi) D以上都不對(duì) 37、在下列關(guān)鍵字中,用以說(shuō)明類(lèi)中公有成員的是 A public B private C protected D friend 38、要求通過(guò)函數(shù)來(lái)實(shí)現(xiàn)一種不太復(fù)雜的功能 ,并且要求加快執(zhí)行速度 ,選用 A內(nèi)聯(lián)函數(shù) B重載函數(shù) C遞歸調(diào)用 D嵌套調(diào)用 39、功能為對(duì)對(duì)象進(jìn)行初始化的是 A析構(gòu)函數(shù) B數(shù)據(jù)成員 C構(gòu)造函數(shù) D靜態(tài)成員函數(shù) 40、下述靜態(tài)數(shù)據(jù)成員的特性中,錯(cuò)誤的是 A說(shuō)明靜態(tài)數(shù)據(jù)成員時(shí)前邊要加修飾符 static B靜態(tài)數(shù)據(jù)成員要在類(lèi)體外進(jìn)行初始化 C引用靜態(tài)數(shù)據(jù)成員時(shí),要在靜態(tài)數(shù)據(jù)成員前加類(lèi)名和作用域運(yùn)算符 D靜態(tài)數(shù)據(jù)成員不是所有對(duì)象所共有的 41、在 C+中 ,關(guān)于下列設(shè)置參數(shù)默認(rèn)值的描述中 ,正確的是 A不允許設(shè)置參數(shù)的默認(rèn)值 B設(shè)置參數(shù)默認(rèn)值只能在定義函數(shù)時(shí)設(shè)置 C設(shè)置參數(shù)默認(rèn)值 時(shí) ,應(yīng)該是先設(shè)置右邊的再設(shè)置左邊的 D設(shè)置參數(shù)默認(rèn)值時(shí) ,應(yīng)該全部參數(shù)都設(shè)置 42、 print()函數(shù)是一個(gè)類(lèi)的常成員函數(shù) ,它無(wú)返回值 ,下列表示中 ,正確的是 A void print() const B const void print() C void const print() D void print(const) 二、填空題 1、面向?qū)ο蟪绦蛟O(shè)計(jì)有四個(gè)主要特點(diǎn),即抽象、封裝、 _和 _。 2、非成員函數(shù)應(yīng)聲明為類(lèi)的 _函數(shù)才能訪問(wèn)這個(gè)類(lèi)的 private成員。 3、派生類(lèi)中的成員 不能直接訪問(wèn)基類(lèi)中的 _成員。 4、在用 class定義一個(gè)類(lèi)時(shí),數(shù)據(jù)成員和成員函數(shù)的默認(rèn)訪問(wèn)權(quán)限是 _。 5、運(yùn)算符重載函數(shù)可能是類(lèi)的 _函數(shù),也可以是類(lèi)的 _函數(shù),還可以是普通函數(shù)。 6、用流對(duì)象的成員函數(shù)控制輸出格式時(shí),用于設(shè)置字段寬度的流成員函數(shù)的名稱(chēng)是 _,與之作用相同的控制符名稱(chēng)是 _。 7、含有純虛函數(shù)的類(lèi)稱(chēng)為 _。 8、使用 cin和 cout進(jìn)行輸入輸出操作的程序必須包含頭文件 _ ,其語(yǔ)句格式為 _ 。 9、 C+語(yǔ)言中使用 const定義常量時(shí)需要指出 _ 、 _ 和 _ 。 10、派生類(lèi)的構(gòu)造函數(shù)的初始化表中,通常應(yīng)包含 _ 構(gòu)造函數(shù)和 _ 構(gòu)造函數(shù)。 11、 C+語(yǔ)言支持兩種多態(tài)性,分別是 _ 和 _ 。 12、函數(shù)調(diào)用 excc(v1,v2),(v3,v4,v5),v6);語(yǔ)句中實(shí)參的個(gè)數(shù)是 _ 。 13、 C+語(yǔ)言中的每條基本語(yǔ)句以 作為結(jié)束符,每條復(fù)合語(yǔ)句以 作為結(jié)束符。 14、執(zhí)行 “cout char(A+2)5的相反表達(dá)式為 。 18、假定一個(gè)一維數(shù)組的定義為 “char * a8 ;” ,則該數(shù)組所含元素的個(gè)數(shù)為 ,所占存儲(chǔ)空間的字節(jié)數(shù)為 。 19、變量分為全局和局部?jī)煞N, 變量沒(méi)有賦初值時(shí),其值是不確定的。 20、假定 a是一個(gè)二維數(shù)組,則 aij的指針訪問(wèn)方式為 。 21、假定一個(gè)結(jié)構(gòu)類(lèi)型定義為 “struct D int a ; union int b ; double c ; ; D * d2 ; ;” , 則該類(lèi)型的大小為 字節(jié)。 22、對(duì)一個(gè)類(lèi)中的數(shù)據(jù)成員的初始化可以通過(guò)構(gòu)造函 數(shù)中的 實(shí)現(xiàn),也可以通過(guò)構(gòu)造函數(shù)中的 實(shí)現(xiàn)。 23、假定 AB為一個(gè)類(lèi),則執(zhí)行 “AB a10;” 語(yǔ)句時(shí),系統(tǒng)自動(dòng)調(diào)用該類(lèi)的構(gòu)造函數(shù)的次數(shù)為 。 242、假定類(lèi) AB中有一個(gè)公用屬性的靜態(tài)數(shù)據(jù)成員 bb,在類(lèi)外不通過(guò)對(duì)象名訪問(wèn)該成員 bb的寫(xiě)法為 。 三、程序的填空、程序的執(zhí)行 1、以下程序是定義一個(gè)計(jì)數(shù)器類(lèi)counter,對(duì) 其重載運(yùn)算符 “+”,請(qǐng)?zhí)羁铡?class counter private: int n; public: counter() n=0; counter(int i)n=i; _ /運(yùn)算符重載函數(shù) counter t; t.n=n+c.n; return t; void disp() coutn=nendl; ; void main() counter c1(5),c2(10),c3; c3=c1+c2; c1.disp(); c2.disp(); c3.disp(); 2、下列程序的輸出結(jié)果為 2,請(qǐng)將程序補(bǔ)充完整。 class Base public: _ void fun() cout1; ; class Derived: public Base public: void fun( ) coutfun( ); delete p; return 0; 3、寫(xiě)出執(zhí)行下面程序的輸出結(jié)果。 void fun(int &x, int y) int t=x; x=y; y=t; int main( ) int a2 = 23, 42; fun(a1,a0); std:couta0,a1std:endl; return 0; 27、寫(xiě)出執(zhí)行下面程序的輸出結(jié)果。 class A public: A() coutA; ; class B public: B() coutB; ; class C : public A B b; public: C() coutC; ; int main( ) C obj; return 0; 4、寫(xiě)出執(zhí)行下面程序的輸出結(jié)果。 class Base private: char c; public: Base(char n):c(n) virtual Base()coutC; ; class Der:public Base private: char c; public: Der(char n):Base(n+1),c(n) Der()coutC; ; int main() Der(X); return 0; 5. #include void fun(int *s,int n1,int n2) int i,j,t; i=n1;j=n2; while (ij) t=*(s+i); *(s+i)=*(s+j); *(s+j)=t; i+; j-; void main() int a10=1,2,3,4,5,6,7,8,9,0,i,*p=a; 輸出結(jié)果為: fun(p,0,3);fun (p,4,9);fun(p,0,9); for (i=0;i10;i+) cout *(a+i); cout endl; 6. 有如下程序 #include #include class Girl char *name , *dial; public: Girl(char *n, char *d) name=new charstrlen(n)+1; strcpy(name, n); dial= new charstrlen(d)+1; strcpy(dial,d); friend void disp(Girl &); Girl() delete name; delete dial; ; void disp(Girl &x) cout”Girl s name is:””,tel:”x.dialendl; void main() Girl e(“Liping”,); disp(e); 其輸出結(jié)果為: 程序中突出介紹了 C+中用于對(duì)私有成員訪問(wèn)的什么概念。 7. #include class base public: virtual void who() coutbase classendl; ; class derive1:public base public: void who() coutderivel class endl; ; class derive2:public base public: void who() coutderive2 class who(); p=&obj2; p-who(); p=&obj3; p-who(); 四、編程題 1、 編寫(xiě)一個(gè)程序,設(shè)計(jì)一個(gè)滿足如下要求的 Cdate類(lèi): 用下面的格式輸出日期: 日 /月 /年; 輸出在當(dāng)前日期上加一天后的日期; 設(shè) 置日期。 2、編寫(xiě)一個(gè)程序設(shè)計(jì)一個(gè)棧操作類(lèi),包含入棧和出棧成員函數(shù),然后入棧一組數(shù)據(jù),出棧并顯示出棧順序。 3、編寫(xiě)一個(gè)程序計(jì)算 “ 三角形、正方形、圓形 ” 三種圖形的面積,要求: a)抽象出一個(gè)基類(lèi) base; b)在其中說(shuō)明一個(gè)虛函數(shù)用來(lái)求面積; c)利用派生類(lèi)定義 “ 三角形、正方形、圓形 ” ; d)編寫(xiě)主函數(shù)。 4、 編寫(xiě)程序,把從鍵盤(pán)上輸入的一批整數(shù) (以 -1 作為終止輸入的標(biāo)志 )保存到文本文件“a:xxk1.dat” 中。 請(qǐng)您刪除一下內(nèi)容, O( _ )O 謝謝! 2015 年中央電大期末復(fù)習(xí)考試小抄大全,電大期末考試必備小抄,電大考試必過(guò)小抄 After earning his spurs in the kitchens of The Westin, The Sheraton, Sens on the Bund, and a sprinkling of other top-notch venues, Simpson Lu fi nally got the chance to become his own boss in November 2010. Sort of. The Shanghai-born chef might not actually own California Pizza Kitchen (CPK) but he is in sole charge of both kitchen and frontof- house at this Sinan Mansionsstalwart. Its certainly a responsibility to be the head chef, and then to have to manage the rest of the restaurant as well, the 31-year-old tells Enjoy Shanghai. In hotels, for example, these jobs are strictly demarcated, so its a great opportunity to learn how a business operates across the board. It was a task that management back in sunny California evidently felt he was ready for, and a vote of confi dence from a company that, to date, has opened 250 outlets in 11 countries. And for added pressure, the Shanghai branch was also CPKs China debut. For sure it was a big step, and unlike all their other Asia operations that are franchises, they decided to manage it directly to begin with, says Simpson. Two years ago a private franchisee took over the lease, but the links to CPK headquarters are still strong, with a mainland-based brand ambassador on hand to ensure the business adheres to its ethos of creating innovative, hearth-baked pizzas, a slice of PR blurb that Simpson insists lives up to the hype. They are very innovative, he says. The problem with most fast food places is that they use the same sauce on every pizza and just change the toppings. Every one of our 16 pizza sauces is a unique recipe that has been formulated to complement the toppings perfectly. The largely local customer base evidently agrees and on Saturday and Sunday, at least, the place is teeming. The kids-eat-for-free policy at weekends is undoubtedly a big draw, as well as is the spacious second-fl oor layout overlooked by a canopy of green from Fuxing Park over the road. The company is also focusing on increasing brand recognition and in recent years has taken part in outside events such as the regular California Week. Still, the sta are honest enough to admit that business could be better; as good, in fact, as in CPKs second outlet in the popular Kerry Parkside shopping mall in Pudong. Sinan Mansions has really struggled to get the number of visitors that were envisaged when it first opened, and it hasnt been easy for any of the tenants here, adds Simpson. Were planning a third outlet in the city in 2015, and we will probably choose a shopping mall again because of the better foot traffic. The tearooms once frequented by Coco Chanel and Marcel Proust are upping sticks and coming to Shanghai, Xu Junqian visits the Parisian outpost with sweet treats. One thing the century-old Parisian tearoom Angelina has shown is that legendary fashion designer Coco Chanel not only had style and glamor but also boasted great taste in food, pastries in particular. One of the most popular tearooms in Paris, Angelina is famous for having once been frequented by celebrities such as Chanel and writer Marcel Proust. Now Angelina has packed up its French ambience, efficient service, and beautiful, comforting desserts and flown them to Shanghai. At the flagship dine-in and take-out space in Shanghai, everything mimics the original tearoom designed from the beginning of the 20th century, in Paris, the height of Belle Epoque. The paintings on the wall, for example, are exactly the same as the one that depicts the landscape of southern France, the hometown of the owner; and the small tables are intentional imitations of the ones that Coco Chanel once sat at every afternoon for hot chocolate. The famous hot chocolate, known as LAfricain, is a luxurious mixture of four types of cocoa beans imported from Africa, blended in Paris and then shipped to Shanghai. Its sinfully sweet, rich and thick as if putting a bar of melting chocolate directly on the tongue and the fresh whipped cream on the side makes a light, but equally gratifying contrast. It is also sold in glass bottles as takeaway. The signature Mont-Blanc chestnut cake consists of three parts: the pureed chestnut on top, the vanilla cream like stuffing, and the meringue as base. Get all three layers in one scoop, not only for the different textures but also various flavors of sweetness. The dessert has maintained its popularity for a century, even in a country like France, perhaps the worlds most competitive place for desserts. A much overlooked pairing, is the Paris-New York choux pastry and N226 chocolate flavored tea. The choux pastry is a mouthful of airy pecan-flavored whipped cream, while the tea, a blend of black teas from China and Ceylon, cocoa and rose petals, offers a more subtle fragrance of flowers and chocolate. Ordering these two items, featuring a muted sweetness, makes it easier for you to fit into your little black dress. Breakfast, brunch, lunch and light supper are also served at the tearoom, a hub of many cultures and takes in a mix of different styles of French cuisines, according to the management team. The semi-cooked foie gras terrine, is seductive and deceptive. Its generously served at the size and shape of a toast, while the actual brioche toast is baked into a curved slice dipped with fig chutney. The flavor, however, is honest: strong, smooth and sublime. And you dont actually need the toast for crunchiness. This is the season for high teas, with dainty cups of fine china and little pastries that appeal to both visual and physical appetites. But there is one high tea with a difference, and Pauline D. Loh finds out just exactly why it is special. Earl Grey tea and macarons are all very well for the crucial recuperative break in-between intensive bouts of holiday season shopping. And for those who prefer savory to sweet, there is still the selection of classic Chinese snacks called dim sum to satisfy and satiate. High tea is a meal to eat with eye and mouth, an in-between indulgence that should be light enough not to spoil dinner, but sufficiently robust to take the edge off the hunger that strikes hours after lunch. The afternoon tea special at Shang-Xi at the Four Seasons Hotel Pudong has just the right elements. It is a pampering meal, with touches of luxury that make the high tea session a treat in itself. Whole baby abalones are braised and then topped on a shortcrust pastry shell, a sort of Chinese version of the Western vol-au-vent, but classier. Even classier is the dim sum staple shrimp dumpling or hargow, upgraded with the addition of slivers of midnight dark truffles. This is a master touch, and chef Simon Choi, who presides unchallenged at Shang-Xi, has scored a winner again. Sweet prawns and aromatic truffles whats not to love? His masterful craftsmanship is exhibited in yet another pastry a sweet pastry that is shaped to look like a walnut, but which you can put straight into the mouth. It crumbles immediately, and the slightly sweet, nutty morsel is so easy to eat youll probably reach
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2020-2021學(xué)年廣東省汕頭市潮陽(yáng)區(qū)高一上學(xué)期期末考試英語(yǔ)試題 解析版
- 施工企業(yè)2025年《春節(jié)節(jié)后復(fù)工復(fù)產(chǎn)》工作實(shí)施方案 (匯編3份)
- 《燃油供給系檢修》課件
- 檔案管理知識(shí)競(jìng)賽試題附答案
- 上范司諫書(shū)(文言文)高考語(yǔ)文閱讀理解
- 云南省楚雄州2023-2024學(xué)年高三上學(xué)期期末考試英語(yǔ)試卷
- 高端會(huì)議保安工作總結(jié)與策略計(jì)劃
- 超市食品安全監(jiān)測(cè)總結(jié)
- 高管團(tuán)隊(duì)建設(shè)與管理計(jì)劃
- 機(jī)場(chǎng)保安工作要點(diǎn)
- 小班音樂(lè)教案:小瓢蟲(chóng)飛教案及反思
- 生活中的代數(shù)智慧樹(shù)知到課后章節(jié)答案2023年下成都師范學(xué)院
- 監(jiān)獄物業(yè)投標(biāo)方案 (技術(shù)方案)
- 盲眼鐘表匠:生命自然選擇的秘密
- 雷達(dá)的分類(lèi)及雷達(dá)信號(hào)處理詳解
- 焊接檢驗(yàn)作業(yè)指導(dǎo)書(shū)
- 甘河工業(yè)園區(qū)穩(wěn)定化固化車(chē)間和危廢暫存庫(kù)項(xiàng)目環(huán)評(píng)報(bào)告
- 《新時(shí)代勞動(dòng)教育教程與實(shí)踐(第2版)》課程標(biāo)準(zhǔn)
- 21ZJ111 變形縫建筑構(gòu)造
- 皮帶輸送機(jī)日常點(diǎn)檢表
- 自愿放棄證明書(shū)怎么寫(xiě)
評(píng)論
0/150
提交評(píng)論