Recherche…


Strict null vérifie en action

Par défaut, tous les types de TypeScript autorisent null :

function getId(x: Element) {
  return x.id;
}
getId(null);  // TypeScript does not complain, but this is a runtime error.

TypeScript 2.0 prend en charge les contrôles NULL stricts. Si vous définissez --strictNullChecks lors de l'exécution de tsc (ou définissez cet indicateur dans votre tsconfig.json ), alors les types n'autorisent plus null :

function getId(x: Element) {
  return x.id;
}
getId(null);  // error: Argument of type 'null' is not assignable to parameter of type 'Element'.

Vous devez autoriser explicitement les valeurs null :

function getId(x: Element|null) {
  return x.id;  // error TS2531: Object is possibly 'null'.
}
getId(null);

Avec un garde approprié, le type de code vérifie et fonctionne correctement:

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);

Assertions non nulles

L'opérateur d'assertion non nulle, ! , vous permet d'affirmer qu'une expression n'est pas null ou undefined lorsque le compilateur TypeScript ne peut en déduire automatiquement:

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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow