gpt4 book ai didi

c# - 无法访问派生类中的基属性 (C#)

转载 作者:行者123 更新时间:2023-11-30 12:39:32 24 4
gpt4 key购买 nike

我在 C#/Xamarin.Forms 中遇到继承/多态性方面的问题。有很多事情我认为我可以被允许做,但我没有,而且从我收集到的信息来看,我似乎没有正确继承,所以首先要做的事情是:

声明

public abstract partial class CommonCell : ContentView, ICellSection
{

public static readonly BindableProperty TitleProperty = BindableProperty.Create("Title", typeof(string), typeof(CommonCell), default(string));
public string Title
{
get { return (string)GetValue(TitleProperty); }
set { SetValue(TitleProperty, value); }
}
public CommonCell()
: base()
{

}
public virtual IInputType GetInputType()
{
throw new NotImplementedException();
}
}

在同一个文件中,我还声明了这个派生类:

[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class CellSection<T>: CommonCell where T : View, IInputType
{
private T _inputType;
public T InputType
{
get { return _inputType; }
set { _inputType = value; } //plus more stuff here
}
public CellSection ()
:base()
{
//Layout Initialization
}
public override IInputType GetInputType() //I get an error here (Problem 2)
{
return InputType;
}
}

我只包含一个属性和一个方法来演示我的问题,但还有更多以相同方式声明的...

问题1

当我创建一个新的 CellSection 时,会发生这样的情况:

CellSection<TextInput> section1 = new CellSection<TextInput>();
section1.Title = "New Title"; //This line is not allowed

不允许我访问 Title 属性...

错误信息:CellSection<TextInput>' does not contain a definition for 'Title'

我已经能够通过将以下代码添加到 CellSection<T> 来访问它类:

public string Title
{
get { return base.Title; }
set { base.Title = value; }
}

但这似乎是该死的不必要和多余的......必须有另一种方式......

问题2

我遇到的另一个问题是不允许我覆盖虚拟方法 GetInputType() ,它也在上面的代码中,但这是我正在谈论的行:

public override IInputType GetInputType()
{
return InputType;
}

错误信息:'CellSection<T>.GetInputType()': no suitable method found to override

问题3

最后一个问题是,当我从不同的类/文件尝试引用/转换 CellSection<T> 时至 ICellSection (由基类 CommonCell 实现)

List<ICellSection> Sections = new List<ICellSection> { section1, section2 };

我收到不允许的错误消息。

错误信息:Argument 1: cannot convert from 'CellSection<TextInput>' to 'ICellSection'

这个我更不确定,因为我不知道它是否可能(找不到例子),但问题 1 和 2 我只是不明白为什么它们不起作用看起来很直接......

最佳答案

每一位客户支持员工:

"Have you tried turning it off and on again?"

我:

"Dam'it... Yes, yes I have turned it off and on again"

原来这个问题是 Visual Studio 或 Xamarin 错误。我删除了所有相关文件并再次添加它们(将相同的旧代码复制并粘贴到新文件中)。繁荣!现在一切都被正确地继承了。我不知道是什么导致了这个问题,因为我认为这将是 .projitems 文件中的一个引用问题,但该文件基本上没有任何变化(在 git 中检查几行切换位置但仅此而已)。

如果以后有人遇到相同或类似的问题:我在遇到此问题时已多次重新启动 Visual Studio。遇到这个问题时,我至少重新启动了一次机器。

关于c# - 无法访问派生类中的基属性 (C#),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45277393/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com