- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
泛型(Generic) 允许您延迟编写类或方法中的编程元素的数据类型的规范,直到实际在程序中使用它的时候。换句话说,泛型允许您编写一个可以与任何数据类型一起工作的类或方法。
您可以通过数据类型的替代参数编写类或方法的规范。当编译器遇到类的构造函数或方法的函数调用时,它会生成代码来处理指定的数据类型。下面这个简单的实例将有助于您理解这个概念:using System; using System.Collections.Generic; namespace GenericApplication public class MyGenericArray T private T[] array; public MyGenericArray(int size) array = new T[size + 1]; public T getItem(int index) return array[index]; public void setItem(int index, T value) array[index] = value; class Tester static void Main(string[] args) // 声明一个整型数组 MyGenericArray int intArray = new MyGenericArray int // 设置值 for (int c = 0; c c++) intArray.setItem(c, c*5); // 获取值 for (int c = 0; c c++) Console.Write(intArray.getItem(c) + Console.WriteLine(); // 声明一个字符数组 MyGenericArray char charArray = new MyGenericArray char // 设置值 for (int c = 0; c c++) charArray.setItem(c, (char)(c+97)); // 获取值 for (int c = 0; c c++) Console.Write(charArray.getItem(c) + Console.WriteLine(); Console.ReadKey();当上面的代码被编译和执行时,它会产生下列结果:
0 5 10 15 20 a b c d e
using System; using System.Collections.Generic; namespace GenericMethodAppl class Program static void Swap T (ref T lhs, ref T rhs) T temp; temp = lhs; lhs = rhs; rhs = temp; static void Main(string[] args) int a, b; char c, d; a = 10; b = 20; c = I d = V // 在交换之前显示值 Console.WriteLine( Int values before calling swap: Console.WriteLine( a = {0}, b = {1} , a, b); Console.WriteLine( Char values before calling swap: Console.WriteLine( c = {0}, d = {1} , c, d); // 调用 swap Swap int (ref a, ref b); Swap char (ref c, ref d); // 在交换之后显示值 Console.WriteLine( Int values after calling swap: Console.WriteLine( a = {0}, b = {1} , a, b); Console.WriteLine( Char values after calling swap: Console.WriteLine( c = {0}, d = {1} , c, d); Console.ReadKey();当上面的代码被编译和执行时,它会产生下列结果:
Int values before calling swap: a = 10, b = 20 Char values before calling swap: c = I, d = V Int values after calling swap: a = 20, b = 10 Char values after calling swap: c = V, d = I泛型(Generic)委托 您可以通过类型参数定义泛型委托。例如:
delegate T NumberChanger T (T n);下面的实例演示了委托的使用:
using System; using System.Collections.Generic; delegate T NumberChanger T (T n); namespace GenericDelegateAppl class TestDelegate static int num = 10; public static int AddNum(int p) num += p; return num; public static int MultNum(int q) num *= q; return num; public static int getNum() return num; static void Main(string[] args) // 创建委托实例 NumberChanger int nc1 = new NumberChanger int (AddNum); NumberChanger int nc2 = new NumberChanger int (MultNum); // 使用委托对象调用方法 nc1(25); Console.WriteLine( Value of Num: {0} , getNum()); nc2(5); Console.WriteLine( Value of Num: {0} , getNum()); Console.ReadKey();当上面的代码被编译和执行时,它会产生下列结果:
Value of Num: 35 Value of Num: 175
generic parameters of trait function 的简单示例: trait Ext: Sized { fn then(self, f: fn(Self) -> R) -
在下面的代码中,为什么 Groovy 似乎忽略了方法 barMany 中提供的闭包参数的泛型类型声明: import groovy.transform.CompileStatic @CompileSt
据我所知,Prolog 没有任何内置机制用于generic programming。 .可以使用统一来模拟泛型,但这需要在运行时进行类型检查: :- initialization(main). :-
在我的应用程序中,我有一个 Board。董事会由细胞组成。每个单元格都有一个 int 值。有几种类型的 Board 可以扩展 Board。每种类型的板将以不同方式表示单元格。例如,一个人会使用 Lis
我想将存储的属性添加到 UIView 子类中,例如UIView、UIImageView、UIPickerView等, 我只需要从子类创建 UIView 的实例子类仅类型不同,所有属性和方法都相同。 T
这个问题在这里已经有了答案: Any type and implementing generic list in go programming language (2 个答案) 关闭 6 个月前。
我有以下代码as seen in ideone.com : import java.util.*; class Test{ interface Visitor{ public
在 Swift 中,我们可以对序列等通用项编写扩展: extension Sequence where Iterator.Element : ObservableType { } 这将保证扩展仅适用于
我知道这听起来很困惑,但这是我能解释的最好的了。 (您可以建议一个更好的标题)。我有 3 节课:- A public class A > { ... } B public class B {
我目前在大学攻读 CS,我刚刚开始学习数据结构和算法类(class)。我的教授非常喜欢(实际上是强制我们)使用 Ada。为了取得成功,我开始查找一些东西并找到了这段代码,它描述了如何编写通用堆栈: g
我正在玩 Scala By Example 开头的 QuickSort 示例并尝试将其调整为通用类型 A ,而不仅仅是 Int s。 到目前为止我的工作是 def sort[A new Y(i, -
谁能解释为什么下面的第二个例子不能编译? “测试 2”给出“错误 FS0670:此代码不够通用。类型变量 ^a 无法泛化,因为它会超出其范围。”。我无法理解此错误消息。 // Test 1 type
如何将泛型存储在非泛型对象持有的泛型TList中? type TXmlBuilder = class type TXmlAttribute= class Name: Str
我正在尝试通过遵循 wiki article 创建如何使用 GHC.Generics 的最小工作示例.这是我所拥有的: {-# LANGUAGE DefaultSignatures, DeriveGe
我正在尝试将 get 函数添加到 wiki 中描述的通用序列化中。 。有些部分看起来很简单,但有一些地方我非常不确定要写什么,毫不奇怪,我遇到了编译错误。我已经查看了原始论文以及 cereal 中的实
为什么这段代码有效? $v):void { print_r($v); } test(Vector {1, array("I'm an array"), 3}); 它不应该抛出错误吗?什么是应
有没有办法让 Rust Generic 只接受原始类型?我想稍后迭代值中的位,并且我知道这只有在原始类型中才有可能。 struct MyStruct { my_property: T // m
假设我有一个简单的类 public class MyObject { } 以及处理MyObject子类的handler接口(interface) public interface MyObjectHa
出于某种原因,我正在努力通过使用通用基类来实现通用接口(interface)的属性,如下所示: public interface IParent where TChild : IChild {
我收到以下错误。 google了一天多,还是找不到具体的解决方法,求大神指点,谢谢 ERROR: Cannot implicitly convert type System.Collections.G
我是一名优秀的程序员,十分优秀!