对于要求应力与应变有严格比例关系的零件,应采用()作为设计和选材的依据。
A.比例极限P
B.弹性极限e
C.屈服点S
参考答案:A
许多历史文化遗址已经陈旧颓破,然而这丝毫不影响其()。沧桑变迁,更是遗址上烙刻的不可复制的历史。文物的保护,也应包括对这种()逝去岁月的“年轮”的保护。
A.光彩 见证
B.价值 表现
C.声誉 刻画
D.内涵 描绘
下列程序的输出结果是______。 #include<iostream) using namespace Std; Class Test public: Test()cnt++; ~Test()cnt--; staticint Count()return cnt; private: static int cnt; ; int Test::cnt=0; int main() cout<<Test::Count()<<‘‘; Test t1,t2; Test*pT3=new Test; Test*pT4=new Test; cout<<Test::Count()<<‘‘; delete pT4; delete pT3; cout<<Test::Count()<<endl; return 0;