4

refキーワードを使用せずに、パラメーターのオブジェクト参照を置き換えることができるようにしたいと考えています。

refの使用を避けている理由は、メソッドを探すコレクション初期化子の呼び出しを保持するAdd(T item)ためであり、コレクションクラスで参照をそのインターフェイスの別の実装に置き換える必要があります。

私はこれを行うためにいくつかの異なる方法を試しました。まず、文書化されていないキーワード、、を使用してみ__makerefまし__refvalue__reftype

次にDynamicMethod、refパラメーターを使用して逆アセンブルされた同様の呼び出しを調べて観察したものを模倣しようとするILを使用してを作成しようとしました。

示すコードは次のとおりです。

using System;
using System.Collections.Generic;
using System.Collections;
using System.Reflection.Emit;
using System.Reflection;
interface IRecord
{
    string Name { get;}
}
class ImpA : IRecord
{
    public string Name { get { return "Implementation A"; } }
}
class ImpB : IRecord
{
    public string Name { get { return "Implementation B"; } }
}
class RecordList<T> : IEnumerable<T>
{
    //// Standard Add method (of course does not work)
    //public void Add(T item)
    //{
    //    item = (T)(object)new ImpB();
    //}

    // ref method (works great but the signature cannot be
    // used by the collection initializer)
    public void Add(ref T item)
    {
        IRecord newItem = new ImpB();
        item = (T)newItem;
    }

    //// Using System.TypedReference (does not work)
    //public void Add(T item)
    //{
    //    T newItem = (T)(object)new ImpB();
    //    TypedReference typedRef = __makeref(item);
    //    __refvalue(typedRef, T) = newItem;
    //}

    // Using Reflection.Emit DynamicMethod (This method should work but I need help)
    public void Add(T item)
    {
        IRecord newItem = new ImpB();

        System.Reflection.MethodAttributes methodAttributes =
              System.Reflection.MethodAttributes.Public
            | System.Reflection.MethodAttributes.Static;

        DynamicMethod dm = new DynamicMethod("AssignRef",
            methodAttributes,
            CallingConventions.Standard,
            null,
            new Type[] { typeof(IRecord), typeof(IRecord) },
            this.GetType(),
            true);

        ILGenerator generator = dm.GetILGenerator();
        // IL of method
        //public static void Add(ref item, ref newItem)
        //{
        //    item = newItem;
        //}
        // -- Loading Params (before call to Add() --
        //L_002b: ldloca.s sb // this is the ref variable
        //L_002d: ldloc.2 // The other variable
        // -- Add method IL --
        //L_0000: nop 
        //L_0001: ldarg.0 
        //L_0002: ldarg.1 
        //L_0003: stind.ref 
        //L_0004: ret 

        generator.Emit(OpCodes.Ldarga_S, 0);
        generator.Emit(OpCodes.Ldarg_1);
        generator.Emit(OpCodes.Stind_Ref);
        generator.Emit(OpCodes.Ret);

        Action<IRecord, IRecord> AssignRef =
            (Action<IRecord, IRecord>)dm.CreateDelegate(
            typeof(Action<IRecord, IRecord>));

        AssignRef((IRecord)item, (IRecord)newItem);
    }


    public IEnumerator GetEnumerator()
    {
        throw new NotImplementedException();
    }
    IEnumerator<T> IEnumerable<T>.GetEnumerator()
    {
        throw new NotImplementedException();
    }
}
class Program
{
    static void Main(string[] args)
    {
        IRecord imp = new ImpA();
        Console.WriteLine("Original implementation: {0}\n", imp.Name);

        // Calls Add Implicitly
        RecordList<IRecord> records = new RecordList<IRecord> { imp };
        // Prints "Implementation A"
        Console.WriteLine("After Add Method: {0}", imp.Name);

        records.Add(ref imp); // Explicit call with ref
        // Prints "Implementation B"
        Console.WriteLine("After Add Ref method: {0}\n", imp.Name);
    }
}

ありがとうございました。

4

1 に答える 1

8

ref キーワードを使用せずに、パラメーターのオブジェクト参照を置き換えることができるようにしたいと考えています。

これは絶対に起こらないでしょう。(非ref) メソッドが呼び出されると、CLR は渡された参照のコピーを作成し、それをメソッドが受け取ります。メソッドはその参照を心ゆくまで変更できますが、文書化されていないキーワードや巧妙な CIL を使用してどんなトリックを試みても、コピーが作成された元の参照 (呼び出し元のメソッドによって渡された参照) にはまったくアクセスできません。 .

また、コレクション初期化子に渡されたパラメーターを置き換えようとしている理由はわかりません。すべきでないことをするコードのにおいがします。

于 2011-07-26T21:24:48.993 に答える