MSIL实用指南-创建方法和定义参数
本篇讲解实现创建方法、指定参数的名称、实现参数加out和ref修饰符、以及参数加默认值。
创建方法
创建方法用类TypeAttributes的
DefineMethod(string name, MethodAttributes attributes, Type returnType, Type[] parameterTypes)
方法,返回结果是MethodBuilder,就可以创普通方法。
例子
MethodBuilder m2 = typeBuilder.DefineMethod("M2",
MethodAttributes.Public | MethodAttributes.Abstract | MethodAttributes.Virtual,
typeof(string), new Type[] { typeof(int), typeof(string), typeof(object) });
这个写法就和下面的C#程序一样
public abstract void M1();
定义一个抽象方法需要用MethodAttributes的Abstract|Virtual才可以。
定义参数
用MethodBuilder的DefineParameter(int position, ParameterAttributes attributes, string strParamName)
方法
参数说明
position:该参数在参数列表中的位置。为参数编索引,第一个参数从数字 1 开始;数字 0 表示方法的返回值。
attributes: 参数的参数属性。
strParamName: 参数名。名称可以为 null 字符串。
返回结果:
返回一个 ParameterBuilder 对象,该对象表示此方法的参数或此方法的返回值。
1.指定参数的名称
在程序的方法调用中传入第三个参数传入参数名称就可以了。
例如
MethodBuilder m2 = typeBuilder.DefineMethod("M2",
MethodAttributes.Public | MethodAttributes.Abstract | MethodAttributes.Virtual,
typeof(string), new Type[] { typeof(int), typeof(string), typeof(object) }); m2.DefineParameter(, ParameterAttributes.None, "arg0");
m2.DefineParameter(, ParameterAttributes.None, "param1");
m2.DefineParameter(, ParameterAttributes.None, "param2");
这个方法的三个参数名称依次是arg0、param1、param2。
2.指定参数out
我们要实现如下方法,参数的修饰符是out
public abstract string mout(out int arg3 );
需要使用ParameterAttributes.Out就可以了。
具体实现
MethodBuilder m5 = typeBuilder.DefineMethod("mout",
MethodAttributes.Public | MethodAttributes.Abstract | MethodAttributes.Virtual,
typeof(string), new Type[] { typeof(int), typeof(int) }); ParameterBuilder m5p1 = m5.DefineParameter(1, ParameterAttributes.Out, "arg3");
3.实现参数默认值
要实现参数有默认值,比如下面这句
public abstract string mdefault(int arg1 = );
实现这个效果的程序是
MethodBuilder m3 = typeBuilder.DefineMethod("mdefault",
MethodAttributes.Public | MethodAttributes.Abstract | MethodAttributes.Virtual,
typeof(string), new Type[] { typeof(int) }); ParameterBuilder m3p1 = m3.DefineParameter(, ParameterAttributes.HasDefault | ParameterAttributes.Optional, "arg1");
m3p1.SetConstant();
实现定义参数属性为ParameterAttributes.HasDefault | ParameterAttributes.Optional,并得到一个
ParameterBuilder实例,再设置这个实例的默认值。
4.实现指定参数ref
我们要实现如下方法,参数的修饰符是out
public abstract string mref(ref dobule arg2);
首先
MethodBuilder m4 = typeBuilder.DefineMethod("mref",
MethodAttributes.Public | MethodAttributes.Abstract | MethodAttributes.Virtual,
typeof(string), new Type[] { Type.GetType("System.Double&") });
参数的类型不是一般的typeof(double),而要用特殊的Type.GetType("System.Double&")
其次
ParameterBuilder m4p1 = m4.DefineParameter(, ParameterAttributes.Out, "arg2");
要设置参数的属性为ParameterAttributes.Out
完整程序如下
using System;
using System.Reflection;
using System.Reflection.Emit; namespace LX1_ILDemo
{
class Demo07_Method
{
static string binaryName = "Demo07_Method.dll";
static string namespaceName = "LX1_ILDemo";
static string typeName = "EmitMethod"; static AssemblyBuilder assemblyBuilder;
static ModuleBuilder moduleBuilder;
static TypeBuilder typeBuilder; public static void Generate()
{
InitAssembly(); typeBuilder = moduleBuilder.DefineType(namespaceName + "." + typeName,
TypeAttributes.Public | TypeAttributes.Abstract); /* 生成 public static void Main() */
GenerateMethods(); SaveAssembly();
Console.WriteLine("生成成功");
} static void GenerateMethods()
{
/* public abstract void M1(); */
MethodBuilder m1 = typeBuilder.DefineMethod("M1",
MethodAttributes.Public | MethodAttributes.Abstract | MethodAttributes.Virtual,
typeof(void), new Type[] { }); /* public abstract string M2(int arg0,string param1); */
MethodBuilder m2 = typeBuilder.DefineMethod("M2",
MethodAttributes.Public | MethodAttributes.Abstract | MethodAttributes.Virtual,
typeof(string), new Type[] { typeof(int), typeof(string), typeof(object) }); m2.DefineParameter(, ParameterAttributes.None, "arg0");
m2.DefineParameter(, ParameterAttributes.None, "param1");
m2.DefineParameter(, ParameterAttributes.None, "param2"); /* public abstract string mdefault(int arg1 =4 ); */
MethodBuilder m3 = typeBuilder.DefineMethod("mdefault",
MethodAttributes.Public | MethodAttributes.Abstract | MethodAttributes.Virtual,
typeof(string), new Type[] { typeof(int) }); ParameterBuilder m3p1 = m3.DefineParameter(, ParameterAttributes.HasDefault | ParameterAttributes.Optional, "arg1");
m3p1.SetConstant(); /* public abstract string mref(ref dobule arg2); */
MethodBuilder m4 = typeBuilder.DefineMethod("mref",
MethodAttributes.Public | MethodAttributes.Abstract | MethodAttributes.Virtual,
typeof(string), new Type[] { Type.GetType("System.Double&") }); ParameterBuilder m4p1 = m4.DefineParameter(, ParameterAttributes.Out, "arg2"); /* public abstract string mout(out int arg3 ); */
MethodBuilder m5 = typeBuilder.DefineMethod("mout",
MethodAttributes.Public | MethodAttributes.Abstract | MethodAttributes.Virtual,
typeof(string), new Type[] { typeof(int), typeof(int) }); ParameterBuilder m5p1 = m5.DefineParameter(, ParameterAttributes.Out, "arg3");
} static void InitAssembly()
{
AssemblyName assemblyName = new AssemblyName(namespaceName);
assemblyBuilder = AppDomain.CurrentDomain.DefineDynamicAssembly(assemblyName, AssemblyBuilderAccess.RunAndSave);
moduleBuilder = assemblyBuilder.DefineDynamicModule(assemblyName.Name, binaryName);
} static void SaveAssembly()
{
Type t = typeBuilder.CreateType(); //完成Type,这是必须的
assemblyBuilder.Save(binaryName);
}
}
}
MSIL实用指南-创建方法和定义参数的更多相关文章
- MSIL实用指南-创建字段
本篇讲解怎么创建字段,主要是在修饰符的创建上. 创建字段的方法是TypeBuilder.DefineField,传入字段名称.字段类型.字段修饰符等参数,返回一个FieldBuilder对象.先看这一 ...
- MSIL实用指南-创建枚举类型
创建枚举类型比较简单,主要使用moduleBuilder.DefineEnum 和enumBuilder.DefineLiteral. 第一步:创建 EnumBuilder 创建 EnumBuilde ...
- MSIL实用指南-加载和保存参数
本篇讲解怎么加载和保存参数,以及参数起始序号的确定. 参数的加载加载参数的指令是Ldarg.Ldarg_S.Ldarg_0.Ldarg_1.Ldarg_2.Ldarg_3.Ldarg_0是加载第0个参 ...
- MSIL实用指南-生成索引器
MSIL实用指南-生成索引器 索引器是一种特殊的属性,它有参数的,也有get和set方法,属性名称一般是"Item",并且方法名称一般名称是"get_Item" ...
- MSIL实用指南-Action的生成和调用
MSIL实用指南-Action的生成和调用 System.Action用于封装一个没有参数没有返回值的方法.这里生成需要Ldftn指令. 下面讲解怎生成如下的程序. class ActionTest ...
- MSIL实用指南-生成属性
本篇讲解怎么生成属性,包括get和set方法. 第一步,生成一个字段生成字段用TypeBuilder.DefineField方法.实例代码: FieldBuilder customerNameBldr ...
- MSIL实用指南-给字段、属性、方法、类、程序集加Attribute
C#编程中可以给字段.方法.类以及程序集加特性即继承于Attribute的类.这里讲解怎么在IL中给它们加上特性. 生成字段的对应的类是FieldBuilder,生成属性的对应的类是PropertyB ...
- MSIL实用指南-方法的调用
方法调用指令主要有Call和Callvirt. 调用static或sealed修饰的方法,用Call指令. 调用virtual或abstract修饰的方法,用Callvirt指令. 代码实例: ilG ...
- MSIL实用指南-闭包的生成和调用
闭包(Closure)是词法闭包(Lexical Closure)的简称.对闭包的具体定义有很多种说法,这些说法大体可以分为两类: 一种说法认为闭包是符合一定条件的函数,比如参考资源中这样定义闭包:闭 ...
随机推荐
- 剑指offer随练
合并两个排序的链表 题目描述 输入两个单调递增的链表,输出两个链表合成后的链表,当然我们需要合成后的链表满足单调不减规则. 思路:使用递归的方法,合并头节点,然后对剩下的链表接着合并头节点,直到合并完 ...
- HDU - 3567 IDA* + 曼哈顿距离 + 康托 [kuangbin带你飞]专题二
这题难度颇大啊,TLE一天了,测试数据组数太多了.双向广度优先搜索不能得到字典序最小的,一直WA. 思路:利用IDA*算法,当前状态到达目标状态的可能最小步数就是曼哈顿距离,用于搜索中的剪枝.下次搜索 ...
- 安装apache报没有找到VCRUNTIME40.dll错误
解决办法 在Windows下运行最新版的Apache和php7都需要Visual C++Redistributable 2015,而之前的版本不需要那么高的,这个组件是运行Visual Studio ...
- Luogu P1690 贪婪的Copy
题目描述 Copy从卢牛那里听说在一片叫yz的神的领域埋藏着不少宝藏,于是Copy来到了这个被划分为个区域的神地.卢牛告诉了Copy这里共有个宝藏,分别放在第Pi个(1<=Pi<=N)区域 ...
- 剑指offer 第九天
35.数组中的逆序对 在数组中的两个数字,如果前面一个数字大于后面的数字,则这两个数字组成一个逆序对.输入一个数组,求出这个数组中的逆序对的总数P.并将P对1000000007取模的结果输出. 即输出 ...
- qwe框架- CNN 实现
CNN实现 概述 我在qwe中有两种,第一种是按照Ng课程中的写法,多层循环嵌套得到每次的"小方格",然后WX+b,这样的做法是最简单,直观.但是效率极其慢.基本跑个10张以内图片 ...
- GOF 23种设计模式
设计模式目录 创建型 1. Factory Method(工厂方法) 2. Abstract Factory(抽象工厂) 3. Builder(建造者) 4. Prototype(原型) 5. Sin ...
- DOS批处理命令递归删除给定的文件(夹),兼VC工程清理小工具
使用dos批处理命令递归删除指定的文件(夹): (下面内容针对清理VC工程!自己按说明任意修改) 2014-06-10修改:删除前增加了[y,n]询问: echo off rem 递归删除当前文件下指 ...
- windows下键盘常用快捷键整理
以下快捷键均在win7环境下测试有效: 声明:本博文由多篇博文经实测整理而出. win键相关的快捷键多用于桌面场景,如开起资源管理器.切换任务窗口.最大化最小化窗口等等. 场景一: 1. 任何情况下想 ...
- java中的“\t”
对于初学者来说,java中的"\t"和空格总是让人迷惑,其实很简单,通过一个例子就能很快明白! 比如说打印九九乘法表! 先来看用空格的效果! package cn.edu.nwpu ...