TypeScript
Controles nulos estrictos
Buscar..
Controles nulos estrictos en acción.
De forma predeterminada, todos los tipos en TypeScript permiten null
:
function getId(x: Element) {
return x.id;
}
getId(null); // TypeScript does not complain, but this is a runtime error.
TypeScript 2.0 agrega soporte para controles nulos estrictos. Si establece --strictNullChecks
cuando ejecuta tsc
(o establece este indicador en su tsconfig.json
), entonces los tipos ya no permiten null
:
function getId(x: Element) {
return x.id;
}
getId(null); // error: Argument of type 'null' is not assignable to parameter of type 'Element'.
Debe permitir valores null
explícitamente:
function getId(x: Element|null) {
return x.id; // error TS2531: Object is possibly 'null'.
}
getId(null);
Con una protección adecuada, el tipo de código verifica y se ejecuta correctamente:
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);
Aserciones no nulas
El operador afirmación no nulo, !
, le permite afirmar que una expresión no es null
o undefined
cuando el compilador de TypeScript no puede inferir eso automáticamente:
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
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow