公共密封类SqlConnection: DbConnection, iclonable

本文关键字:DbConnection iclonable SqlConnection 密封类 | 更新日期: 2023-09-27 18:05:09

请帮助我理解以下内容:

public sealed class SqlConnection : DbConnection, ICloneable {...}

在上面的课中,我有两个疑问

  1. 在c#中多重继承是不可能的(我们可以通过接口实现)。但是这里DBconnection不是一个接口,那么它是如何支持多重继承的呢?

  2. Iclonable是一个接口。它有一个名为object Clone()的方法。但是在Sqlconnection类中没有实现该方法。这怎么可能?

请帮我理解一下

公共密封类SqlConnection: DbConnection, iclonable

  1. 这里没有多重继承。您可以从一个类继承并实现多个接口。这里,DBConnection是一个类,IClonable是一个类,interface

  2. IClonable被声明为Explicit Interface,这意味着您不能直接从类实例访问它,但必须显式转换为接口类型

interface IDimensions 
{
     float Length();
     float Width();
}
class Box : IDimensions 
{
     float lengthInches;
     float widthInches;
     public Box(float length, float width) 
     {
        lengthInches = length;
        widthInches = width;
     }
     // Explicit interface member implementation: 
     float IDimensions.Length() 
     {
        return lengthInches;
     }
    // Explicit interface member implementation:
    float IDimensions.Width() 
    {
       return widthInches;      
    }
 public static void Main() 
 {
      // Declare a class instance "myBox":
      Box myBox = new Box(30.0f, 20.0f);
      // Declare an interface instance "myDimensions":
      IDimensions myDimensions = (IDimensions) myBox;
      // Print out the dimensions of the box:
      /* The following commented lines would produce   compilation 
       errors because they try to access an explicitly implemented
       interface member from a class instance:                   */
      //System.Console.WriteLine("Length: {0}", myBox.Length());
    //System.Console.WriteLine("Width: {0}", myBox.Width());
    /* Print out the dimensions of the box by calling the methods 
     from an instance of the interface:                         */
    System.Console.WriteLine("Length: {0}", myDimensions.Length());
    System.Console.WriteLine("Width: {0}", myDimensions.Width());
    }
 }

这不是多重继承。正如您正确注意到的,DbConnection是一个类,而ICloneable是一个接口。只有一个基类DbConnection,所以这是单继承。

对于Clone()方法,SqlConnection确实实现了它,但使用显式接口实现。这将隐藏Clone()方法,直到您将SqlConnection对象视为ICloneable。当类的作者决定该类应该实现一个接口时,类可以这样做,但是该接口提供的方法通常对调用该特定类没有意义。