我正在研究一个名为 PByte 的类,它应该表示 32 到 126 之间的 int 值。(PByte = Printable Byte。)现在我想防止该类的用户错误地初始化一个对象,但我不想要抛出异常,我只希望 Visual Studio 不编译,就像您尝试执行此操作时发生的那样:byte b = 256;
sealed class PByte : IEquatable<PByte>, IComparable, IComparable<PByte>
{
public PByte(int value)
{
/* if (value < 32 || value > 126)
throw new ArgumentException("\"" + value + "\" is not a valid PByte-value"); */
this._value = value;
}
[...]
我也实现了这个:
[...]
public static implicit operator PByte(int value)
{
/* if (value < 32 || value > 126)
throw new ArgumentException("\"" + value + "\" is not a valid PByte-value"); */
return new PByte(value);
}
}
所以这也应该是不可能的:
PByte p = 2000;