黑马程序员技术交流社区

标题: type是什么类型的数据和他的性质是什么 [打印本页]

作者: boy_AND_gou    时间: 2014-4-22 22:09
标题: type是什么类型的数据和他的性质是什么
本帖最后由 boy_AND_gou 于 2014-4-24 00:11 编辑

求解决。。。。。。

作者: continue     时间: 2014-4-22 23:08
本帖最后由 continue  于 2014-4-22 23:10 编辑

这个不好描述,你学了反射就晓得了, Type 是一个类型,它里面放的是变量的类型
Class Person
{
      int age;
}


privte void func()
{
     //定义一个变量
     Person abc;
     //获取这个变量的类型
     Type type = abc.getType();
}
//上面这个方法中,type的结果就死Person,而声名这个变量的时候,就只能是Type类型的,当然也可以是object类型的


作者: boy_AND_gou    时间: 2014-4-22 23:23
continue  发表于 2014-4-22 23:08
这个不好描述,你学了反射就晓得了, Type 是一个类型,它里面放的是变量的类型
Class Person
{

明白了,不过怎么提问结束呢
作者: 袁晓俊    时间: 2014-4-23 18:38
C#中通过Type类可以访问任意数据类型信息。
1.获取给定类型的Type引用有3种方式:
  a.使用typeof运算符,如Type t = typeof(int);
  b.使用GetType()方法,如int i;Type t = i.GetType();
  c.使用Type类的静态方法GetType(),如Type t =Type.GetType("System.Double");
2.Type的属性:
  Name:数据类型名;
  FullName:数据类型的完全限定名,包括命名空间;
  Namespace:数据类型的命名空间;
  BaseType:直接基本类型;
  UnderlyingSystemType:映射类型;
3.Type的方法:
  GetMethod():返回一个方法的信息;
  GetMethods():返回所有方法的信息。

TestType.cs:
using System;
using System.Reflection;

namespace Magci.Test.Reflection
{
    public class TestType
    {
        public static void Main()
        {
            //基本数据类型
            Type intType = typeof(int);
            
            //属性
            Console.WriteLine("intType.Name = " + intType.Name);
            Console.WriteLine("intType.FullName = " + intType.FullName);
            Console.WriteLine("intType.Namespace = " + intType.Namespace);
            Console.WriteLine("intType.IsAbstract = " + intType.IsAbstract);
            Console.WriteLine("intType.IsClass = " + intType.IsClass);
            Console.WriteLine("intType.IsEnum = " + intType.IsEnum);
            Console.WriteLine("intType.IsPrimitive = " + intType.IsPrimitive);
            Console.WriteLine("intType.IsValueType = " + intType.IsValueType);

            //方法
            MethodInfo[] methods = intType.GetMethods();
            foreach (MethodInfo method in methods)
            {
                Console.WriteLine(method.DeclaringType + " " + method.MemberType + " " + method.Name);
            }
        }
    }
}
TestTypeView.cs:
using System;
using System.Text;
using System.Windows.Forms;
using System.Reflection;

namespace Magci.Test.Reflection
{
    public class TestTypeView
    {
        public static StringBuilder OutputText = new StringBuilder();

        public static void Main()
        {
            Type t = typeof(double);
            AnalyzeType(t);
            MessageBox.Show(OutputText.ToString());
        }

        public static void AnalyzeType(Type t)
        {
            //数据类型名
            OutputText.Append("\nType Name: " + t.Name);
            //数据类型的完全限定名,包括命名空间
            OutputText.Append("\nFull Name: " + t.FullName);
            //数据类型的命名空间
            OutputText.Append("\nNamespace: " + t.Namespace);
            
            //直接基本类型
            Type tBase = t.BaseType;
            if (tBase != null)
            {
                OutputText.Append("\nBase Type: " + tBase.Name);
            }
            
            //映射类型
            Type tUnderlyingSystem = t.UnderlyingSystemType;
            if (tUnderlyingSystem != null)
            {
                OutputText.Append("\nUnderlyingSystem Type: " + tUnderlyingSystem.Name);
            }

            //所有公共方法
            OutputText.Append("\n\nPublic members:");
            MemberInfo[] methods = t.GetMethods();
            foreach (MemberInfo method in methods)
            {
                OutputText.Append("\n" + method.DeclaringType + " " + method.MemberType + "" + method.Name);
            }
        }
    }


作者: czwanglei    时间: 2014-4-23 18:52
boy_AND_gou 发表于 2014-4-22 23:23
明白了,不过怎么提问结束呢

编辑帖子那里。。
作者: boy_AND_gou    时间: 2014-4-23 23:30
czwanglei 发表于 2014-4-23 18:52
编辑帖子那里。。

你所那个地方没找到
作者: czwanglei    时间: 2014-4-24 09:57
boy_AND_gou 发表于 2014-4-23 23:30
你所那个地方没找到

应当可以找到的,你慢慢找吧,我是版主管理权限给你不一样,不好给你演示。。




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2