- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我读了一本书“CLR via C# Fourth Edition”。我无法理解一种说法:
So, for example, if you have the following line of code:
FileStream[] fsArray;
then when the CLR creates the
FileStream[]
type, it will cause this type to automatically implement theIEnumerable<FileStream>
,ICollection<FileStream>
, andIList<FileStream>
interfaces. Furthermore, theFileStream[]
type will also implement the interfaces for the base types:IEnumerable<Stream>
,IEnumerable<Object>
,ICollection<Stream>
,ICollection<Object>
,IList<Stream>
, andIList<Object>
.
我用这段代码测试了这条语句:
FileStream[] fsArray = new FileStream[0];
string s = null;
foreach (var m in fsArray.GetType().GetInterfaces())
s += m.ToString() + Environment.NewLine;
结果,我得到了这个:
System.ICloneable
System.Collections.IList
System.Collections.ICollection
System.Collections.IEnumerable
System.Collections.IStructuralComparable
System.Collections.IStructuralEquatable
System.Collections.Generic.IList`1[System.IO.FileStream]
System.Collections.Generic.ICollection`1[System.IO.FileStream]
System.Collections.Generic.IEnumerable`1[System.IO.FileStream]
System.Collections.Generic.IReadOnlyList`1[System.IO.FileStream]
System.Collections.Generic.IReadOnlyCollection`1[System.IO.FileStream]
没有执行 IEnumerable<Stream>
和别的!我在某处弄错了吗?还是 Jeffrey Richter 弄错了?
此外,我认为它是无意义的。因为数组支持协方差。
最佳答案
There is no implementation of IEnumerable and others!
没有。然而,IList<Stream> streamList = fsArray;
将工作。你可以使用 streamList
正如您所期望的那样,尽管如果您尝试对数组执行无效的操作会出现运行时异常(只要该数组是从零开始的并且具有单一维度——Microsoft 的说法是“SZ 数组”——否则它是不允许的) .
想看更糟的东西吗?
var listMap = typeof(List<FileStream>).GetInterfaceMap(typeof(IList<FileStream>)); // This works fine.
var arrMap = typeof(typeof(FileStream[]).GetInterfaceMap(typeof(IList<FileStream>)); // This throws `ArgumentException`
所以在这方面,FileStream[]
甚至没有实现 IList<FileStream>
;如果确实如此,那么上面的行肯定应该有效。
从 .NET 4.0 开始,我们得到了一条有趣的线索。在此之前,ArgumentException
会有 "Interface not found"
的消息,就像我们试图在 int
上获取该接口(interface)一样或 string[]
.现在是"Interface maps for generic interfaces on arrays cannot be retrived."
[原文如此]
如果我们尝试获取 IList<Stream>
的接口(interface)映射,它也会给我们这个但不适用于完全不受支持的接口(interface),如 IList<bool>
.
这里发生了一些不寻常的事情。
它是什么 FileStream[]
根本不直接支持任何通用接口(interface),与 class
相同或 struct
会的。
取而代之的是一个名为 SZArrayHelper
的 stub 类它在运行时为从零开始的一维数组提供这些接口(interface)。关于 .NET Core Version 的评论信息丰富:
//----------------------------------------------------------------------------------------
// ! READ THIS BEFORE YOU WORK ON THIS CLASS.
//
// The methods on this class must be written VERY carefully to avoid introducing security holes.
// That's because they are invoked with special "this"! The "this" object
// for all of these methods are not SZArrayHelper objects. Rather, they are of type U[]
// where U[] is castable to T[]. No actual SZArrayHelper object is ever instantiated. Thus, you will
// see a lot of expressions that cast "this" "T[]".
//
// This class is needed to allow an SZ array of type T[] to expose IList<T>,
// IList<T.BaseType>, etc., etc. all the way up to IList<Object>. When the following call is
// made:
//
// ((IList<T>) (new U[n])).SomeIListMethod()
//
// the interface stub dispatcher treats this as a special case, loads up SZArrayHelper,
// finds the corresponding generic method (matched simply by method name), instantiates
// it for type <T> and executes it.
//
// The "T" will reflect the interface used to invoke the method. The actual runtime "this" will be
// array that is castable to "T[]" (i.e. for primitivs and valuetypes, it will be exactly
// "T[]" - for orefs, it may be a "U[]" where U derives from T.)
//----------------------------------------------------------------------------------------
这就是发生的事情。如果你尝试投 fsArray
至 IList<Stream>
然后你让这个类(class)为你打电话。如果您调用 GetInterfaces()
您会得到类似的 stub 代码,仅提供与数组类型相关的代码。在任何一种情况下fsArray
确实实现了您引用的书中提到的所有接口(interface),但它的实现方式与class
不同。或 struct
可以。
(类推一下 int
如何既可以是 32 位值的四个字节又可以是具有接口(interface)实现、方法覆盖等的“完整”对象)
所以这本书是正确的,但您也没有遗漏任何东西,因为当类型实现接口(interface)时我们期望发生的某些事情并没有发生。
Furthermore, I think it is mean-less. Because Arrays support co-variance.
支持协方差并不意味着他们会实现给定的接口(interface),反之亦然。特别是因为数组的(可以说是损坏的)协变与接口(interface)中的协变非常不同,并且早于它,而且实际上让数组实现通用接口(interface)也早于接口(interface)协变。
但是,决定FileStream[]
确实应该实现 Stream[]
确实与数组协变有关(否则这个决定会非常错误),但它需要额外的帮助 SZArrayHelper
提供,而不是被它自动包含。
关于c# - 数组中自动实现的接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31832806/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!