TypeScript
Строгие проверки нуля
Поиск…
Строгие проверки нулей в действии
По умолчанию все типы в TypeScript допускают null
:
function getId(x: Element) {
return x.id;
}
getId(null); // TypeScript does not complain, but this is a runtime error.
TypeScript 2.0 добавляет поддержку для строгих проверок null. Если вы установите --strictNullChecks
при запуске tsc
(или установите этот флаг в tsconfig.json
), тогда типы больше не разрешают null
:
function getId(x: Element) {
return x.id;
}
getId(null); // error: Argument of type 'null' is not assignable to parameter of type 'Element'.
Вы должны явно указать null
значения:
function getId(x: Element|null) {
return x.id; // error TS2531: Object is possibly 'null'.
}
getId(null);
При правильной защите тип кода проверяет и работает правильно:
function getId(x: Element|null) {
if (x) {
return x.id; // In this branch, x's type is Element
} else {
return null; // In this branch, x's type is null.
}
}
getId(null);
Непустые утверждения
Непустой оператор утверждения !
, позволяет утверждать, что выражение не имеет null
или undefined
если компилятор TypeScript не может сделать это автоматически:
type ListNode = { data: number; next?: ListNode; };
function addNext(node: ListNode) {
if (node.next === undefined) {
node.next = {data: 0};
}
}
function setNextValue(node: ListNode, value: number) {
addNext(node);
// Even though we know `node.next` is defined because we just called `addNext`,
// TypeScript isn't able to infer this in the line of code below:
// node.next.data = value;
// So, we can use the non-null assertion operator, !,
// to assert that node.next isn't undefined and silence the compiler warning
node.next!.data = value;
}
Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow