第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用繼承者可訪問(wèn)但實(shí)例化器無(wú)法訪問(wèn)的設(shè)置器在接口中聲明屬性

使用繼承者可訪問(wèn)但實(shí)例化器無(wú)法訪問(wèn)的設(shè)置器在接口中聲明屬性

C#
慕妹3146593 2022-11-21 20:32:04
我想強(qiáng)制我的繼承人包含屬性Propy,所以我設(shè)計(jì)了以下內(nèi)容。public interface Enforcer{  string Propy { get; set; }}在接口和實(shí)際類之間,我需要使用抽象基類來(lái)強(qiáng)制執(zhí)行構(gòu)造函數(shù)簽名。然后,實(shí)現(xiàn)類和繼承類看起來(lái)是這樣的。public class Implementer : Enforcer{  public string Propy { get; set; }  public Implementer(string propy) { Propy = propy; }}現(xiàn)在,如果我實(shí)例化該類,我可以隨機(jī)訪問(wèn)我想要限制的屬性。我不能將 setter 聲明為 private 或 protected,因?yàn)榭稍L問(wèn)性修飾符不能用于接口中的訪問(wèn)器。我不能將屬性全部設(shè)為私有,因?yàn)槲倚枰?runner 類中訪問(wèn)它(當(dāng)然是只讀的)。public class Inheritor : Implementer{  public Inheritor(string propy) : base(propy) { }}public class Instantiator{  public void Main()  {    Inheritor thing = new Inheritor("blopp");    string propy = thing.Propy;    thing.Propy = "bzz";  }}我希望最后一條聲明無(wú)效,但不是倒數(shù)第二條。我用谷歌搜索了我的屁股,但我猜這是一個(gè)有點(diǎn)不尋常的場(chǎng)景(可以通過(guò)簡(jiǎn)單地允許屬性公開(kāi)并希望用戶尊重邊界來(lái)草率處理。我想純粹從學(xué)術(shù)上看如何以正確的方式做到這一點(diǎn).
查看完整描述

3 回答

?
斯蒂芬大帝

TA貢獻(xiàn)1827條經(jīng)驗(yàn) 獲得超8個(gè)贊

在接口中,您不能限制對(duì)屬性的訪問(wèn),因此我認(rèn)為您不能強(qiáng)制實(shí)現(xiàn)該接口的類來(lái)限制該訪問(wèn)。


或者你可以使用一個(gè)抽象類,你可以在其中限制訪問(wèn),但一個(gè)不太仁慈的實(shí)現(xiàn)者仍然可以輕松地覆蓋抽象類的限制訪問(wèn)屬性。


interface IMyClass

{

    string MyProperty { get; } // this does nothing against implementing a setter!

}


abstract class MyAbstracClass : IMyClass

{

    string MyProperty { get; protected set; } // otherwise we cannot set it from inheritors

}


class MyClass : MyAbstractClass

{

    public new string MyProperty { get; set; } // nothing stops this!

    public MyClass (string prop) => MyProperty = prop;

}

抽象類選項(xiàng)確實(shí)意味著開(kāi)發(fā)人員不能“意外地”公開(kāi)該屬性。即使您設(shè)法將其隱藏起來(lái),任何真正想要訪問(wèn)私有屬性的開(kāi)發(fā)人員都可以簡(jiǎn)單地使用反射。不過(guò),這也不是偶然發(fā)生的,并且應(yīng)該始終在代碼審查時(shí)發(fā)出危險(xiǎn)信號(hào)!


查看完整回答
反對(duì) 回復(fù) 2022-11-21
?
交互式愛(ài)情

TA貢獻(xiàn)1712條經(jīng)驗(yàn) 獲得超3個(gè)贊

public class Implementer : Enforcer

{

    private readonly string _propy;


    public string Propy

    {

        get => _propy;

        set => throw new InvalidOperationException();

    }


    public Implementer(string propy) { _propy = propy; }

}

設(shè)置時(shí)拋出異常,或者您可以更改接口以僅在實(shí)現(xiàn)中獲取和執(zhí)行私有集


查看完整回答
反對(duì) 回復(fù) 2022-11-21
?
躍然一笑

TA貢獻(xiàn)1826條經(jīng)驗(yàn) 獲得超6個(gè)贊

public class Implementer : Enforcer

{

    private string _propy;

    public string Propy

    { 

        get

        {

            return _propy;

        }

        set

        {

            // do nothing. so readonly.

        }

    }

    public Implementer(string propy) { _propy = propy; }

}


查看完整回答
反對(duì) 回復(fù) 2022-11-21
  • 3 回答
  • 0 關(guān)注
  • 127 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)