这个程序的意思是什么啊?C#,高手帮我看下!

using System;
class Test
{
public static void Main(){
float[] float_arr=new float[10];
double[] double_arr=new double[10];
sbyte[] sbyte_arr=new sbyte[10];
byte[] byte_arr=new byte[10];
ushort[] ushort_arr=new ushort[10];
int[] int_arr=new int[10];
long[] long_arr=new long[10];
string[] string_arr=new string[10];
Console.WriteLine(float_arr);
Console.WriteLine(double_arr);
Console.WriteLine(sbyte_arr);
Console.WriteLine(byte_arr);
Console.WriteLine(ushort_arr);
Console.WriteLine(int_arr);
Console.WriteLine(long_arr);
Console.WriteLine(string_arr);
Console.ReadLine();
}
}

为什么运行结果是:
System.Single[];
System.Double[];
System.Sbyte[];
System.Byte[];
System.Int16[];
System.Int32[];
System.Int64[];
System.String[];

谁能帮我解释一下呀,谢谢啦!

第1个回答  2007-06-02
你又没给他赋值,系统当然会返回一个你所定义的类型咯!
相似回答
大家正在搜