3

我正在阅读这里的代码。我private ITreeModel _model;在 TreeList.cs 中发现:

namespace Aga.Controls.Tree
{
    public class TreeList: ListView
    {
        #region Properties
        //...
        private ITreeModel _model;
        public ITreeModel Model
        {
            //...
        }
        //...
    }
}

ITreeModel 是 ITreeModel.cs 中的一个接口:

namespace Aga.Controls.Tree
{
    public interface ITreeModel
    {
        /// <summary>
        /// Get list of children of the specified parent
        /// </summary>
        IEnumerable GetChildren(object parent);

        /// <summary>
        /// returns wheather specified parent has any children or not.
        /// </summary>
        bool HasChildren(object parent);
    }
}

_model一个实例化的对象吗?

编辑

TreeList.cs

namespace Aga.Controls.Tree
{
    public class TreeList: ListView
    {
        #region Properties

        /// <summary>
        /// Internal collection of rows representing visible nodes, actually displayed in the ListView
        /// </summary>
        internal ObservableCollectionAdv<TreeNode> Rows
        {
            get;
            private set;
        } 

        private ITreeModel _model;
        public ITreeModel Model
        {
            get { return _model; }
            set 
            {
                if (_model != value)
                {
                    _model = value;
                    _root.Children.Clear();
                    Rows.Clear();
                    CreateChildrenNodes(_root);
                }
            }
        }

        private TreeNode _root;
        internal TreeNode Root
        {
            get { return _root; }
        }
        //....
    }
}

}

编辑2

某处:

public partial class RegistrySample : UserControl
{
    public RegistrySample()
    {
        InitializeComponent();
        _tree.Model = new RegistryModel();
    }
}

class RegistryModel : ITreeModel

4

7 回答 7

4

当然可以,但是底层对象必须实现这个接口。所以你可以做类似的事情

ITreeModel _model  = new TreeModel();

在哪里

public class TreeModel:ITreeModel
{
  ...
}
于 2013-07-25T07:59:53.450 回答
0

它在代码的其他地方实现。如果你打电话_model.GetType().ToString(),你会发现它不仅仅是一个界面。

但是要正确回答您的问题,是的,可以实例化一个接口。你们中的一些人可能会认为“不,它不能”,但它可以做到(通过一些 COM hack):

class Foo : IFoo
{
    readonly string name;
    public Foo(string name)
    {
        this.name = name;
    }
    string IFoo.Message
    {
        get
        {
            return "Hello from " + name;
        }
    }
}
// these attributes make it work
// (the guid is purely random)
[ComImport, CoClass(typeof(Foo))]
[Guid("d60908eb-fd5a-4d3c-9392-8646fcd1edce")]
interface IFoo
{
    string Message {get;}
}
//and then somewhere else:
IFoo foo = new IFoo(); //no errors!

这是我的来源。

于 2013-07-25T08:00:06.403 回答
0

_model应该包含一个实现ITreeModel接口(或它的null)的类的实例。

于 2013-07-25T08:00:07.500 回答
0

Interfaces (C# Programming Guide)

接口不能直接实例化。它的成员由实现接口的任何类或结构实现。

于 2013-07-25T08:00:41.523 回答
0

没有 _model 是对实现ITreeModel类对象实例的接口引用

于 2013-07-25T08:01:12.310 回答
0

_model是的成员,TreeList这意味着您可以创建一个类的实例,然后它将包含某个类的实例。例如

_model = new TreeModel(); 

_model包含一个实例

但你不能做

_model = new ITreeModel(); 

因为ITreeModel是和接口,你不能创建接口的实例

于 2013-07-25T08:01:49.287 回答
0

您永远不能直接在 C# 中实例化接口,但是可以实例化实现该接口的子类。例如:

interface IShape
{
   //Method Signature
   void area(int r);
}

public class Circle : IShape
{
   //method Implementation
   void area(int r)
   {
      float area;
      area = 3.14 * r * r;
      Console.WriteLine("The area of the circle is: {0}",area);
   }
}

public class Shapes
{
   public static void Main() {
      //Uncommenting the following line will cause compiler error as the  
      // line tries to create an instance of interface.
      // interface i = new IShape();

     // We can have references of interface type.
     IShape i = new Circle();
     i.area(10);
   }
}
于 2019-06-04T07:36:07.853 回答