单选题

已知:  int a=100;     void Func(ref int b)  { ……  }   则下列函数调用正确的是()

A Func(ref(10*a))

B Func(ref 10)

C Func(ref(a) )

D Func(ref a)

正确答案

来源:www.examk.com

答案解析

相似试题
  • 已知文法G(E),E→T|E+T;T→F|T *F;F→(E)|i。 (1)给出句型(T *F+i)的最右推导; (2)给出句型(T *F+i)的短语、素短语。

    简答题查看答案

  • int[] myArray = new int[] {1,2,3,4,5};  以下哪个选项可以用一个数组创建一个列表?()

    单选题查看答案

  • 有定义语句: int[,] a=new int[5,6];  则下列正确的数组元素引用是()

    单选题查看答案

  • 执行下面的语句后,a、b、c的值分别是() int a=2; int b=(a++)*3; int c=(++a)*3;

    单选题查看答案

  • 假定int类型变量占用4个字节,若有定义:  int[] x=new int[10]{0,2,4,4,5,6,7,8,9,10};  则数组x在内存中所占字节数是()

    单选题查看答案

  • 有下列语句:  struct Birthday{public int year;  public int month;   public int day;}; struct Student{ int no;  string name;   int age;  public Birthday bir; };  ……  Student Stu;  如果要把Stu的出生年份赋值为1988,正确的语句是()

    单选题查看答案

  • 下列程序段执行后,a[4]的值为()    int[] a={1,2,3,4,5};     a[4]=a[a[2]];

    填空题查看答案

  • if(true){int i=17;}  System.out.println(i);  运行此程序的结果是输出17。

    判断题查看答案

  • 已定义下列变量:  int n;   float f;     double df; df=10;  n=2;  下列语句正确的是()

    单选题查看答案