2 回答
TA贡献1804条经验 获得超7个赞
我看到当前的答案是关于字符串的(例如 c# 中的字符串类处理它),但我想你的问题涵盖了所有可能的可为空对象。
1)首先,关于?? 操作员在另一个答案中建议:它将允许您的代码与空对象一起使用,但在某些时候,您通常仍然需要处理空情况
例子:
if(a != null && a.b != null and a.b.c != null)
{
a.b.c.doSomething();
}
会变成
if(a?.b?.c? != null)
{
a.b.c.doSomething();
}
是的,它好一点,但并不能真正解决您的问题。
2)代码架构命题
我发现通常,allownull意味着你的类有多种用途,并带有更多的状态。在此示例中,您的类可以表示“具有中间名的名称”或“没有全名的名称”。这里有一些关于代码架构的想法
通常,这意味着这个类做了太多的事情。当然,在您的示例中,班级很小。但在日常生活中,有一个可以为空的成员通常意味着类太大,支持的特性太多。一个班级应该只有一个目的。参见单一职责原则
在某些情况下(如示例中),您可能会认为您不想拆分课程,因为它是有意义的。然后你可以尝试看看是否有办法认为这个类具有相同的功能,而无需处理特殊情况。
在您的示例中,您可以执行以下操作:
public class Person
{
string[] FirstNames { get; set {if(value == null) FirstName } = new string[]{};
string LastName { get; set; } = string.Empty;
int Age { get; set; }
}
现在没有特殊情况了。所有函数都必须考虑一个名称数组,其大小可能为 1。
如果您真的非常想要一个空对象,您还可以将处理它的逻辑放在类中,并确保没有其他人访问该空对象。但这可能会导致在同一个班级中有大量的逻辑,所以这不是最好的解决方案
在你的例子中你可以做
public class Person
{
private string FirstName { get; set {if(value == null) FirstName } = string.Empty;
private string MiddleName { get; set; } = string.Empty;
string LastName { get; set; } = string.Empty;
int Age { get; set; }
public string getName()
{
// Here handle the null case
}
}
你可以看到这如何在课堂上增加了逻辑性。
最后,您可以阅读有关Null 对象模式的信息。此模式需要更多代码,但允许您替换null为对象的实际实例,当您在它们上调用函数时不会崩溃。我从来没有积极地使用过它,因为我通常设法通过上述原则获得更清晰的代码,但你可能会发现这很有用的一个案例。
下面是来自维基百科的 Null Object 实现示例
/* Null object pattern implementation:
*/
using System;
// Animal interface is the key to compatibility for Animal implementations below.
interface IAnimal
{
void MakeSound();
}
// Animal is the base case.
abstract class Animal : IAnimal
{
// A shared instance that can be used for comparisons
public static readonly IAnimal Null = new NullAnimal();
// The Null Case: this NullAnimal class should be used in place of C# null keyword.
private class NullAnimal : Animal
{
public override void MakeSound()
{
// Purposefully provides no behaviour.
}
}
public abstract void MakeSound();
}
// Dog is a real animal.
class Dog : IAnimal
{
public void MakeSound()
{
Console.WriteLine("Woof!");
}
}
/* =========================
* Simplistic usage example in a Main entry point.
*/
static class Program
{
static void Main()
{
IAnimal dog = new Dog();
dog.MakeSound(); // outputs "Woof!"
/* Instead of using C# null, use the Animal.Null instance.
* This example is simplistic but conveys the idea that if the Animal.Null instance is used then the program
* will never experience a .NET System.NullReferenceException at runtime, unlike if C# null were used.
*/
IAnimal unknown = Animal.Null; //<< replaces: IAnimal unknown = null;
unknown.MakeSound(); // outputs nothing, but does not throw a runtime exception
}
}
TA贡献1775条经验 获得超8个赞
有时空值肯定是有用的,例如当您有一个代表一组问题答案的对象时,例如 bool? TrueFalseAnswer == null 表示未回答问题,而不是默认为 false,或者 string name == null 表示未填写名称字段等。
就您的类而言,您至少可以将它们初始化为空字符串。
public class Person
{
string FirstName { get; set {if(value == null) FirstName } = string.Empty;
string MiddleName { get; set; } = string.Empty;
string LastName { get; set; } = string.Empty;
int Age { get; set; }
}
另外,我不认为这就是你的意思,但是:
string s = null;
Console.WriteLine(s);
将新行输出到控制台并且不会导致错误。
再说一次,它也很容易输入:
Person p = new Person();
//if(p == null || p.MiddleName == null) s = "";
string s = p?.MiddleName ?? "";
因此,空值很有用,C# 让检查它们变得超级容易。
- 2 回答
- 0 关注
- 134 浏览
添加回答
举报