在c sharp中使用反射和流读取器

时间:2013-04-04 08:49:48

标签: c#

我有一个关于c sharp的反思的问题。这是我的问题

1)使用具有不同访问者(私有,公共,受保护)的不同字段定义类MyClass以及具有不同参数集和返回类型的方法

2)定义包含方法的MyTestClass,它执行以下操作:spicified类名的print方法名称,其中方法包含字符串参数,类名是字符串值。调用类的一些方法,并将参数放到方法中,参数应该从文本文件中读取(类的名称和方法的名称是方法的参数

我已回答了问题,但我遇到了问题,当我在文本文件中运行程序时,我无法从文本文件中读取有一个双数和一个整数,但它没有显示在控制台上 这是我的代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.IO;

class MyClass
{
    private int i;
    public double d;
    private string s;
    public bool b;
    public MyClass()
    {
        i = 1;
        d = 0.1;
        s = "1";
        b = true;
    }
    public void Method0()
    {
        Console.WriteLine("Method with no arguments, no return value.");
    }
    private int Method1(int arg0)
    {
        Console.WriteLine("The method returns int, int gets.");
        return arg0;
    }
    private double Method2(int arg0, double arg1)
    {
        Console.WriteLine("Method returns a double, taking int and double.");
        return arg1 * arg0;
    }
    public bool Method3(string arg0)
    {
        Console.WriteLine("Method returns a bool, accepts string");
        return arg0.Length>10;
    }
    public bool Method3(string arg0,string arg1)
    {
        Console.WriteLine("The method takes two arguments string.");
        return arg0 == arg1;
    }
    public static char Method4(string arg0)
    {
        Console.WriteLine("Method returns a char, accepts string. .");
        return arg0[1];
    }
    public void Method5(int arg0, double arg1)
    {
        Console.WriteLine("arg1 = {0} arg2 = {1}.",arg0,arg1);
    }
}

class MyTestClass
{
    public static string[] GetMethodsWithStrParams(string className)
    {
        var t = Type.GetType(className);
        List<string> res = new List<string>();
        foreach (var method in t.GetMethods())
        {
            foreach (var param in method.GetParameters())
            {
                if (param.ParameterType == typeof(string))
                {
                    res.Add(method.Name);
                    break;
                }
            }
        }
        return res.ToArray();
    }
    public static void InvokeMethod(string className, string methodName, string fileName)
    {
        var t = Type.GetType(className);
        using (StreamReader f = new StreamReader("params.txt"))
        {
            t.GetMethod(methodName).Invoke(t.GetConstructor(Type.EmptyTypes).Invoke(new object[] { }),
                                           new object[] { f.ReadLine() });
        }
    }
}

class Program
{
    static void Main(string[] args)
    {
        string name = "MyClass";

        foreach (var x in MyTestClass.GetMethodsWithStrParams(name))
        {
            Console.WriteLine(x);
        }

        MyTestClass.InvokeMethod("MyClass", "Method4", "params.txt");

        Console.ReadKey(true);
    }
}

这是我运行程序时的输出

method3
method3
method4
Method returns a char, accepts string. .

但是在params.txt里面有

10 1.5

2 个答案:

答案 0 :(得分:0)

一些建议:

将反射部分分成两部分:1)物体的构造; 2)调用方法。这使得代码更清晰,您可以重新使用该对象来调用下一个方法。

f.ReadLine()返回单个字符串。它不会自动将其拆分为单独的参数。 new object[] { f.ReadLine() }为对象数组提供单个字符串值 您需要在某个分隔符上将该行自行拆分为单独的值。然后,您需要将这些单独的字符串转换为您的方法所需的参数类型。

答案 1 :(得分:0)

我在Visual Studio中运行您的代码,我遇到的唯一问题是文件名。其余的似乎原则上都有效。文件params.txt肯定是在可执行文件夹中吗?如果不是,您将需要提供完整路径。

MyTestClass.InvokeMethod("MyClass", "Method4", "c:\\params.txt");

我的另一个问题是? MyClass是否存在于命名空间内?如果是这样,您将需要使用命名空间来返回Type对象:

MyTestClass.InvokeMethod("MyNamespace.MyClass", "Method4", "c:\\params.txt");

我还注意到,尽管方法InvokeMethod接受文件名作为参数,但它有一个硬编码的文件名。因此它忽略了通过调用代码传递的文件名(在main方法中)。