判斷題+、-、*、/、%、++、--均屬于二元運(yùn)算符。()

您可能感興趣的試卷

你可能感興趣的試題

4.單項(xiàng)選擇題在.NET框架類庫中,所有與多線程機(jī)制應(yīng)用相關(guān)的類都放在()命名空間中。

A.System.SysThread
B.System.Thread
C.System.Threading
D.NetException

5.單項(xiàng)選擇題委托類型DG1的定義為delegate float DG1(int a,ref double b);那么下列委托對象的創(chuàng)建表達(dá)式中合法的有:()。

A.DG  1dg1=delegate {return  0.3;};
B.DG  1dg2=delegate {return  a;};
C.DG  1dg3=delegate (int  a,ref  double  b) {return  a;};
D.DG  1dg4=delegate (int  a,ref  double  b) {return  a/b;};