0

我有一个关于升c反射的问题。这是我的问题

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

2)定义包含方法的MyTestClass,执行以下操作:打印指定类名的方法名,其中方法包含字符串参数,类名是字符串值。调用类的某个方法,并将参数放入方法,参数应从文本文件中读取(类名和方法名是方法的参数

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

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
4

2 回答 2

0

一些建议:

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

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

于 2013-04-04T09:01:49.633 回答
0

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

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

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

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

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

于 2013-04-04T09:06:32.643 回答