5

我有以下类 Point 和 Class2。我的目的是在 Class2 中检索所有 Points 实例以将它们存储在列表中。

public class Point
    {
        int x;
        int y;
        string col;

        public Point(int abs, int ord, string clr)
        {
            this.x = abs;
            this.y = ord;
            this.col = clr;
        }

        public string toColor()
        {
            return this.col;
        }

        public int Addition()
        {
            return (this.x + this.y);
        }
    }

class Class2
    {
        int test;
        Point pt1;
        Point pt2;
        Point pt3;
        List<Point> listPt = new List<Point>() { };

        public Class2()
        {
            test = 100;
            this.pt1 = new Point(2, 3, "red");
            this.pt2 = new Point(1, 30, "blue");
            this.pt3 = new Point(5, 10, "black");
        }

        public List<Point> getAllPoint() 
        {
            foreach (var field in this.GetType().GetFields())
            {
                //retrieve current type of the anonimous type variable
                Type fieldType = field.FieldType;

                if (fieldType == typeof(Point))
                {
                    Console.WriteLine("POINT: {0}", field.ToString());
                    //listPt.Add(field); //error
                }
                else
                {
                    Console.WriteLine("Field {0} is not a Point", field.ToString());
                }
            }

            Console.ReadKey();
            return listPt;
        }
    }

但它不起作用,因为字段的类型是“System.Reflection.FieldInfo”,我该怎么做呢?我阅读了很多文章,但我没有找到解决方案:

http://msdn.microsoft.com/en-us/library/ms173105.aspx

通过反射设置属性时的类型转换问题

http://technico.qnownow.com/how-to-set-property-value-using-reflection-in-c/

将变量转换为仅在运行时已知的类型?

...

(我想这样做:最后一个类将具有取决于数据库的 Point 实例,所以我不知道我将拥有多少 Point,并且我需要启动像 Addition 这样的成员函数。)

感谢所有的想法!

4

3 回答 3

9

使用FieldInfo.GetValue()方法:

listPt.Add((Point)field.GetValue(this));
于 2013-08-30T15:27:32.700 回答
1

问题出在您正在使用的GetFields调用中。默认情况下,GetFields 返回所有公共实例字段,并且您的点被声明为私有实例字段。您需要使用另一个重载,它允许对您获得的字段进行更细粒度的控制

如果我将该行更改为:

this.GetType().GetFields(BindingFlags.NonPublic|BindingFlags.Instance)

我得到以下结果:

Field Int32 test is not a Point
POINT: Point pt1
POINT: Point pt2
POINT: Point pt3
Field System.Collections.Generic.List`1[UserQuery+Point] listPt is not a Point
于 2013-08-30T15:28:42.193 回答
0

不知道这是否会奏效,但在我脑海中:

public List<Point> getAllPoint() 
        {
            return (from field in this.GetType().GetFields() where field.FieldType == typeof(Point) select (Point)field.GetValue(this)).ToList();
        }
于 2013-08-30T15:32:34.343 回答