1

変更されたプロパティを通知する 2 つの方法を示す次の単純なコンソール アプリケーションがあるとします。

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            var person = new Person(){ Name = "Me" };
            person.Age = 20;
            person.Weight = 80.5F;
                    person.RandomProperty = new RandomComplexObject();

            Console.ReadKey();
        }
    }


    public class Person : BaseObject
    {
        public string Name
        {
            get { return _name; }
            set { SetProperty(ref value, ref _name, false); }
        }

        public int Age
        {
            get { return _age; }
            set { SetProperty<int>(ref value, ref _age, true, "Age", "Weight"); }
        }

        public float Weight
        {
            get { return _weight; }
            set { SetProperty(ref value, ref _weight, true, () => Weight, () => Age); }
        }

        public RandomComplexObject RandomProperty
        {
            get { return _rco; }

            //*** the following line has the error:
            //-------------------------------------
            set { SetProperty(ref value, ref _rco, true, () => Name, () => Age, () => Weight); } 
        }

        private float _weight;
        private int _age;
        private string _name;
        private RandomComplexObject _rco;
    }

    public class BaseObject : INotifyPropertyChanged
    {

        protected void OnPropertyChanged<T>(Expression<Func<T>> propertyExpression)
        {
            var handler = PropertyChanged;
            if (handler != null)
            {
                var body = propertyExpression.Body as MemberExpression;
                var expression = body.Expression as ConstantExpression;
                handler(expression.Value, new PropertyChangedEventArgs(body.Member.Name));
            }
        }

        private void OnPropertyChanged(string propertyName)              
        {
            var handler = PropertyChanged;
            if (handler == null)
                return;
            handler(this, new PropertyChangedEventArgs(propertyName));
        }

        protected bool SetProperty<T>(ref T newValue, ref T currentValue, bool notify, params string[] notifications)
        {
            if (EqualityComparer<T>.Default.Equals(newValue, currentValue))
                return false;

            currentValue = newValue;
            if (notify)
                foreach (var propertyName in notifications)
                    OnPropertyChanged(propertyName);

            return true;
        }

        protected bool SetProperty<T, TProperty>(ref T newValue, ref T currentValue, bool notify, params Expression<Func<TProperty>>[] notifications)
        {
            if (EqualityComparer<T>.Default.Equals(newValue, currentValue))
                return false;

            currentValue = newValue;
            if (notify)
                foreach (var notification in notifications)
                    OnPropertyChanged(notification);

            return true;
        }

        public event PropertyChangedEventHandler PropertyChanged;

    }

    public class RandomComplexObject{}
}

メソッド呼び出しの行でSetProperty(ref value, ref _rco, true, () => Name, () => Age, () => Weight);、コンパイル エラーが発生しています。

デリゲート型ではないため、ラムダ式を 'string' 型に変換できません

IDE に直接表示されるエラーは次のとおりです。

メソッド 'bool ConsoleApplication1.BaseObject.SetProperty(ref T, ref T, bool, params Expression<Func<TProperty>>[])' の型引数は、使用法から推測できません。型引数を明示的に指定してみてください。

SetProperty()メソッドへのこの呼び出しを明確にするにはどうすればよいですか? これを書くための構文的にきれいな方法はありますか?

4

1 に答える 1

2

次のバリアントは少なくともコンパイルされます。

public RandomComplexObject RandomProperty
{
    get { return _rco; }

    set
    {
        SetProperty(
            ref value,
            ref _rco,
            true,
            () => Name,
            () => Age.ToString(),    //instead of () => Age
            () => Weight.ToString());//instead of () => Weight
    }
}

TPropertyあなたが受け取っているエラーは、コンパイラがfor を推測できなかったという事実に基づいていると思います。

protected bool SetProperty<T, TProperty>(
    ref T newValue, 
    ref T currentValue, 
    bool notify, 
    params Expression<Func<TProperty>>[] notifications)
{
    //...
}

タイプの可変数の引数がExpression<Func<TProperty>>必要であり、そこにラムダを渡し、stringintおよびを返すためfloatです。確かに、コンパイラはどれがTProperty.

Weightプロパティのセッターで:

public float Weight
{
    get { return _weight; }
    set
    {
        SetProperty(ref value, ref _weight, true, () => Weight, () => Age);
    }
}

からへの暗黙的な変換があるため、WeightfloatおよびAge型を持つintコンパイラTPropertyはであると推論しました。floatintfloat

于 2013-01-31T08:35:40.150 に答える