【单选题】
给出下面代码段, 哪行将引起一个编译时错误?( )
1) public class Test {
2) int n = 0;
3) int m = 0;
4) public Test(int a) { m=a; }
5) public static void main(String arg[]) {
6) Test t1,t2;
7) int j,k;
8) j=3; k=5;
9) t1=new Test();
10) t2=new Test(k);
11) }
12) }
【单选题】
函数模板定义如下: template Max( T a, T b ,T }下列选项正确的是( )
①
int x, y; char z; Max(x, y, z);
②
double x, y, z; Max( x, y, z);
③
int x, y; float z; Max( x, y, z);
④
float x; double y, z; Max( x,y, z);