模糊';不实现';编译错误
本文关键字:错误 编译 模糊 实现 | 更新日期: 2023-09-27 18:28:28
我现在正在编写我的第一个MVC应用程序,并正在创建一个新的MembershipProvider,但在这个过程中遇到了一些完全错误的编译错误。这是我的代码:
public class ProfileProvider : MembershipProvider
{
protected NameValueCollection Config = null;
protected new String Name = null;
protected String _PasswordStrengthRegularExpression = "";
protected int _MinRequiredNonAlphanumericCharacters = 0;
protected int _MinRequiredPasswordLength = 0;
protected String _PasswordFormat = "";
protected Boolean _RequiresUniqueEmail = false;
protected int _PasswordAttemptWindow = 0;
protected int _MaxInvalidPasswordAttempts = 0;
protected String _ApplicationName = "";
protected Boolean _RequiresQuestionAndAnswer = false;
protected Boolean _EnabledPasswordReset = false;
protected Boolean _EnablePasswordRetrieval = false;
protected new String PasswordStrengthRegularExpression
{
get
{
return this._PasswordStrengthRegularExpression;
}
set
{
this._PasswordStrengthRegularExpression = value;
}
}
public new int MinRequiredNonAlphanumericCharacters
{
get
{
return this._MinRequiredNonAlphanumericCharacters;
}
set
{
this._MinRequiredNonAlphanumericCharacters = value;
}
}
public new int MinRequiredPasswordLength
{
get
{
return _MinRequiredPasswordLength;
}
set
{
this._MinRequiredPasswordLength = value;
}
}
public new String PasswordFormat
{
get
{
return this._PasswordFormat;
}
set
{
this._PasswordFormat = value;
}
}
public new Boolean RequiresUniqueEmail
{
get
{
return _RequiresUniqueEmail;
}
set
{
this._RequiresUniqueEmail = value;
}
}
public new int PasswordAttemptWindow
{
get
{
return this._PasswordAttemptWindow;
}
set
{
this._PasswordAttemptWindow = value;
}
}
public new int MaxInvalidPasswordAttempts
{
get
{
return this._MaxInvalidPasswordAttempts;
}
set
{
this._MaxInvalidPasswordAttempts = value;
}
}
public new String ApplicationName
{
get
{
return this._ApplicationName;
}
set
{
this._ApplicationName = value;
}
}
public new Boolean RequiresQuestionAndAnswer
{
get
{
return this._RequiresQuestionAndAnswer;
}
set
{
this._RequiresQuestionAndAnswer = value;
}
}
public new Boolean EnablePasswordReset
{
get
{
return this._EnabledPasswordReset;
}
set
{
this._EnabledPasswordReset = value;
}
}
public new Boolean EnablePasswordRetrieval
{
get
{
return this._EnablePasswordRetrieval;
}
set
{
this._EnablePasswordRetrieval = value;
}
}
以下是我的编译错误:
Error 5 'EmptyMVC.Controllers.ProfileProvider' does not implement inherited abstract member 'System.Web.Security.MembershipProvider.RequiresUniqueEmail.get' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 12 18 EmptyMVC
Error 10 'EmptyMVC.Controllers.ProfileProvider' does not implement inherited abstract member 'System.Web.Security.MembershipProvider.RequiresQuestionAndAnswer.get' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 12 18 EmptyMVC
Error 1 'EmptyMVC.Controllers.ProfileProvider' does not implement inherited abstract member 'System.Web.Security.MembershipProvider.PasswordStrengthRegularExpression.get' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 12 18 EmptyMVC
Error 4 'EmptyMVC.Controllers.ProfileProvider' does not implement inherited abstract member 'System.Web.Security.MembershipProvider.PasswordFormat.get' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 12 18 EmptyMVC
Error 6 'EmptyMVC.Controllers.ProfileProvider' does not implement inherited abstract member 'System.Web.Security.MembershipProvider.PasswordAttemptWindow.get' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 12 18 EmptyMVC
Error 3 'EmptyMVC.Controllers.ProfileProvider' does not implement inherited abstract member 'System.Web.Security.MembershipProvider.MinRequiredPasswordLength.get' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 12 18 EmptyMVC
Error 2 'EmptyMVC.Controllers.ProfileProvider' does not implement inherited abstract member 'System.Web.Security.MembershipProvider.MinRequiredNonAlphanumericCharacters.get' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 12 18 EmptyMVC
Error 7 'EmptyMVC.Controllers.ProfileProvider' does not implement inherited abstract member 'System.Web.Security.MembershipProvider.MaxInvalidPasswordAttempts.get' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 12 18 EmptyMVC
Error 12 'EmptyMVC.Controllers.ProfileProvider' does not implement inherited abstract member 'System.Web.Security.MembershipProvider.EnablePasswordRetrieval.get' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 12 18 EmptyMVC
Error 11 'EmptyMVC.Controllers.ProfileProvider' does not implement inherited abstract member 'System.Web.Security.MembershipProvider.EnablePasswordReset.get' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 12 18 EmptyMVC
Error 8 'EmptyMVC.Controllers.ProfileProvider' does not implement inherited abstract member 'System.Web.Security.MembershipProvider.ApplicationName.set' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 12 18 EmptyMVC
Error 9 'EmptyMVC.Controllers.ProfileProvider' does not implement inherited abstract member 'System.Web.Security.MembershipProvider.ApplicationName.get' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 12 18 EmptyMVC
这些错误对我来说是有意义的;比如"嘿,笨蛋,你需要这些东西",但事实是我确实添加了这些东西。任何想法都值得赞赏。提前谢谢。
:::编辑::
忘了提一下,我试过用"override"代替"new",结果也遇到了类似的情况。以下是我对该更改的错误:
Error 7 'EmptyMVC.Controllers.ProfileProvider.RequiresUniqueEmail.set': cannot override because 'System.Web.Security.MembershipProvider.RequiresUniqueEmail' does not have an overridable set accessor C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 78 13 EmptyMVC
Error 10 'EmptyMVC.Controllers.ProfileProvider.RequiresQuestionAndAnswer.set': cannot override because 'System.Web.Security.MembershipProvider.RequiresQuestionAndAnswer' does not have an overridable set accessor C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 122 13 EmptyMVC
Error 3 'EmptyMVC.Controllers.ProfileProvider.PasswordStrengthRegularExpression': cannot change access modifiers when overriding 'public' inherited member 'System.Web.Security.MembershipProvider.PasswordStrengthRegularExpression' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 28 35 EmptyMVC
Error 6 'EmptyMVC.Controllers.ProfileProvider.PasswordFormat': type must be 'System.Web.Security.MembershipPasswordFormat' to match overridden member 'System.Web.Security.MembershipProvider.PasswordFormat' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 61 32 EmptyMVC
Error 8 'EmptyMVC.Controllers.ProfileProvider.PasswordAttemptWindow.set': cannot override because 'System.Web.Security.MembershipProvider.PasswordAttemptWindow' does not have an overridable set accessor C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 89 13 EmptyMVC
Error 5 'EmptyMVC.Controllers.ProfileProvider.MinRequiredPasswordLength.set': cannot override because 'System.Web.Security.MembershipProvider.MinRequiredPasswordLength' does not have an overridable set accessor C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 56 13 EmptyMVC
Error 4 'EmptyMVC.Controllers.ProfileProvider.MinRequiredNonAlphanumericCharacters.set': cannot override because 'System.Web.Security.MembershipProvider.MinRequiredNonAlphanumericCharacters' does not have an overridable set accessor C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 45 13 EmptyMVC
Error 9 'EmptyMVC.Controllers.ProfileProvider.MaxInvalidPasswordAttempts.set': cannot override because 'System.Web.Security.MembershipProvider.MaxInvalidPasswordAttempts' does not have an overridable set accessor C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 100 13 EmptyMVC
Error 12 'EmptyMVC.Controllers.ProfileProvider.EnablePasswordRetrieval.set': cannot override because 'System.Web.Security.MembershipProvider.EnablePasswordRetrieval' does not have an overridable set accessor C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 144 13 EmptyMVC
Error 11 'EmptyMVC.Controllers.ProfileProvider.EnablePasswordReset.set': cannot override because 'System.Web.Security.MembershipProvider.EnablePasswordReset' does not have an overridable set accessor C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 133 13 EmptyMVC
Error 1 'EmptyMVC.Controllers.ProfileProvider' does not implement inherited abstract member 'System.Web.Security.MembershipProvider.PasswordStrengthRegularExpression.get' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 12 18 EmptyMVC
Error 2 'EmptyMVC.Controllers.ProfileProvider' does not implement inherited abstract member 'System.Web.Security.MembershipProvider.PasswordFormat.get' C:'Users'DigitalJedi'documents'visual studio 2010'Projects'EmptyMVC'EmptyMVC'Controllers'ProfileController.cs 12 18 EmptyMVC
您应该在方法上使用override
而不是new
。当您使用new
时,它会创建一个新方法,在基类中隐藏一个同名的现有方法,但实际上并没有实现该方法。因为该方法在基类中声明为abstract
,所以需要在任何非抽象继承类中实现它。使用override
通知编译器您正在实现基类中定义的抽象方法,而不是像new
那样替换它
编辑:使用override
时收到的错误消息是因为MembershipProvider没有在这些属性上实现设置程序。删除这些属性的设置,编译器错误就会消失。在创建或配置提供程序时,您可能希望为这些属性设置支持字段。
我不认为生成的编译器错误是模糊的或无信息的。发生的事情应该是显而易见的。你所需要做的就是查看你正在实现的类的文档,你可以看到没有针对有错误的属性的setter。