( 28 )请阅读下面程序
public class ThreadTest {
public static void main ( String args[ ]) throws Exception {
int i=0;
Hello t = new Hello ();
___________;
whlle ( true ){
System.out.println ( "Good Morning"+i++ ) ;
if ( i=2 && t.isAlive ()){
System.out.println ( "Main waiting for Hello ! ” );
tjoin () ; // 等待 t 运行结束
}
if ( i==5 ) break :}
}
}
class Hello extends Thread {
int i ;
public void run ()笼
while ( true ){
System.out.println ( "Hello"+i++ ) ;
if ( i=5 ) break ;}}}
为使该程序正确执行,下划线处的语句应是
A ) t.sleep ()
B ) t.yieldn ()
C ) t.interrupt ()
D ) t.start ()
第1题:
对于下面程序,对p进行赋值正确的是( )。 class A{ public:fun(int i){cout<<i<<endl;} }; main(){ void(A::*p)(int); }
A.p=fun;
B.p=fun();
C.p=A::fun;
D.p=A::fun()
第2题:
请写出下面的输出:
class B
{
public:
virtual void Print(void)
{
printf(“B::Print\n”);
}
virtual void Reprint(void)
{
printf(“B:Reprint\n”);
}
void Algo(void)
{
Print();
Reprint();
}
};
class D : public B
{
public:
virtual void Print(void)
{
printf(“D::Print\n”);
}
};
void main()
{
B *p = new D();
p->Print();
p->Algo();
}
第3题:
第4题:
已知类 String 的原型为
class string
{
public:
string(const char *str=null);//普通构造函数
string(const string &other);//拷贝构造函数
---string(void);
string &operate=(const string &other);//赋值函数
private:
char * m-data;//用于保存字符串
};
请编写 string 的上述4 个函数
第5题:
第6题:
main方法是Java应用程序执行的入口点,下面main方法的方法头合法的是()
A.public static void main()
B.public static void main(String[] args)
C.public static void Main(String[] args)
D.public static int main(String[] args)