- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试通过覆盖索引器来添加在List<KeyValuePair<string,int>>
中查找元素的功能。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
public class MyList : List<KeyValuePair<string, int>>
{
public int this[string key]
{
get
{
return base.Single(item => item.Key == key).Value;
}
}
}
}
'
System.Collections.Generic.List<System.Collections.Generic.KeyValuePair<string,int>>
' does not contain a definition for 'Single
'.
List<T>
确实没有该方法,但它应该是可见的,因为它是
System.Linq
命名空间(包含在内)的扩展方法。显然,使用
this.Single
解决了此问题,但是为什么通过
base
访问却出错?
When
base.I
occurs in a class or struct,I
must denote a member of the base class of that class or struct.
base
访问扩展方法。但是它也说
At binding-time, base-access expressions of the form
base.I
andbase[E]
are evaluated exactly as if they were written((B)this).I
and((B)this)[E]
, whereB
is the base class of the class or struct in which the construct occurs. Thus,base.I
andbase[E]
correspond tothis.I
andthis[E]
, exceptthis
is viewed as an instance of the base class.
base.I
与
((B)this).I
一样,则似乎应该在此处允许扩展方法。
最佳答案
考虑这种情况:
public class Base
{
public void BaseMethod()
{
}
}
public class Sub : Base
{
public void SubMethod()
{
}
}
public static class Extensions
{
public static void ExtensionMethod(this Base @base) { }
}
ExtensionMethod()
和Base
中都使用Sub
调用扩展方法。 base.ExtensionMethod()
调用Sub
。 Extensions.ExtensionMethod(this)
和Sub
中使用Base
调用扩展方法。 this.ExtensionMethod()
和Sub
中使用Base
调用扩展方法。 this.
。
base.X()
对我们没有帮助。我只能假定
base.X
从odbbase类的上下文中将其虚拟调用作为
X()
而不是
this.X()
来执行。
public class Base
{
protected void BaseMethod()
{
this.ExtensionMethod();
}
}
public class Sub : Base
{
public void SubMethod()
{
// What comes here?
}
}
public static class Extensions
{
public static void ExtensionMethod(this Base @base)
{
Console.WriteLine ("base");
}
public static void ExtensionMethod(this Sub sub)
{
Console.WriteLine ("sub");
}
}
ExtensionMethod(Base)
重载:
BaseMethod()
,在子类和扩展方法之间形成代理。 BaseMethod()
,
base.BaseMethod()
和
this.BaseMethod()
,因为现在您只需要处理一个普通的实例方法,该实例方法又将调用扩展方法。这是一个相当不错的解决方案,因为您不会污染公共(public)API,但还必须提供一种单独的方法来执行本来应该在上下文中访问的操作。
Extensions.ExtensionMethod((Base) this);
base.ExtensionMethod()
的翻译-应该是相同的翻译At binding-time, base-access expressions of the form
base.I
andbase[E]
are evaluated exactly as if they were written((B)this).I
and((B)this)[E]
, whereB
is the base class of the class or struct in which the construct occurs. Thus,base.I
andbase[E]
correspond tothis.I
andthis[E]
, exceptthis
is viewed as an instance of the base class.
base.I
将作为
((B) this).I
调用。但是,在我们的情况下,
base.ExtensionMethod();
将引发编译错误,而
((Base) this).ExtensionMethod();
将正常运行。
using
指令。这是不可能的,因为当前 namespace 实际上是
PortableClassLibrary
。但是,当然,当您实际添加该方法调用时:
关于c# - 为什么不能从扩展类型的基类中调用扩展方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27883427/
经过几个小时的(重新)搜索,我无法想出普通抽象类和使用模板模式之间的可解释区别。 我唯一看到的是: 使用抽象类时,您需要实现所有方法。但是在使用模板方法时,您只需要实现这两个抽象方法。 有人可以向我解
我正在尝试实现一种算法,该算法可找到以下形状给出的外多边形的每个单独边的对应区域。也就是说,1,2 边的相应区域是 [1,6,7,8,2],2,3 边的区域是 [2,8,3] 等等,CCW 或 CW
我正在尝试在派生 self 的 BaseController 类的任何 Controller 上自动设置一个属性。这是我的 Application_Start 方法中的代码。 UnitOfWork 属
我正在使用 mgcv 包通过以下方式将一些多项式样条拟合到一些数据: x.gam smooth$knots [1] -0.081161 -0.054107 -0.027053 0.000001
考虑以下代码: void foo(){ ..... } int main() { int arr[3][3] ; char string[10]; foo();
本书The c++ programming language有这个代码: class BB_ival_slider : public Ival_slider, protected BBslider {
是否有一个 package.json 属性可用于指定模块解析应启动的根文件夹? 例如,假设我们在 node_modules/mypackage/src/file1 中有一个安装。我们要导入的所有文件都
我正在尝试使用聚合函数来实现与 SQL 查询相同的结果: 查询语句: sqldf(" SELECT PhotoID, UserID,
我正在比较使用 LOESS 回归的两条线。我想清楚地显示两条线的置信区间,我遇到了一些困难。 我尝试过使用各种线型和颜色,但在我看来,结果仍然是忙碌和凌乱。我认为置信区间之间的阴影可能会使事情变得更清
给定这段代码 public override void Serialize(BaseContentObject obj) { string file = ObjectDataStoreFold
我正在构建某种工厂方法,它按以下方式将 DerivedClass 作为 BaseClass 返回: BaseClass Factory() { return DerivedClass(); }
当重写 class delegation 实现的接口(interface)方法时,是否可以调用通常从重写函数中委托(delegate)给的类?类似于使用继承时调用 super 的方式。 来自docum
我有一个基类 fragment (如下所示)。我在其他 3 个 fragment 类中扩展了此类,每个类都共享需要在这 3 个 fragment 中访问的相同 EditText。因此,我在基类中设置了
如何在不加载额外库的情况下在 R 中计算两个排列之间的 Kendall tau 距离(又名冒泡排序距离)? 最佳答案 这是一个 O(n.log(n)) 的实现,在阅读后拼凑而成,但我怀疑可能有更好的
情况 我创建了一个具有国际化 (i18n) 的 Angular 应用程序。我想在子域中托管不同的版本,例如: zh.myexample.com es.myexample.com 问题 当我使用命令 n
std::is_base_of 之间的唯一区别和 std::is_convertible是前者在 Base 时也成立是 私有(private)或 protected Derived 的基类.但是,您何
我创建了一个名为 baseviewcontroller 的父类(super class) uiviewcontroller 类,用于包含大多数应用屏幕所需的基本 UI。它包括一个自定义导航栏和一个“自
我是一名优秀的程序员,十分优秀!