What is the purpose of null?

后端 未结 25 2530
别那么骄傲
别那么骄傲 2020-12-07 22:24

I am in a compilers class and we are tasked with creating our own language, from scratch. Currently our dilemma is whether to include a \'null\' type or not. What purpose do

25条回答
  •  隐瞒了意图╮
    2020-12-07 23:26

    Null is not a mistake. Null means "I don't know yet"

    For primitives you don't really need a null (I have to say that strings (in .NET) shouldn't get it IMHO)

    But for composite entities it definitely serves a purpose.

提交回复
热议问题