Szukaj…


Składnia

  • Typy ogólne zadeklarowane w nawiasach trójkątnych: <T>
  • Ograniczenie typów ogólnych odbywa się za pomocą słowa kluczowego extends: <T extends Car>

Uwagi

Ogólne parametry nie są dostępne w czasie wykonywania, są one tylko na czas kompilacji. Oznacza to, że nie możesz zrobić czegoś takiego:

class Executor<T, U> {
    public execute(executable: T): void {
        if (T instanceof Executable1) {    // Compilation error
            ...
        } else if (U instanceof Executable2){    // Compilation error
            ...
        }
    }
}

Jednak informacje o klasach są nadal zachowywane, więc możesz nadal testować typ zmiennej, ponieważ zawsze byłeś w stanie:

class Executor<T, U> {
    public execute(executable: T): void {
        if (executable instanceof Executable1) {
            ...
        } else if (executable instanceof Executable2){
            ...
        } // But in this method, since there is no parameter of type `U` it is non-sensical to ask about U's "type"
    }
}

Ogólne interfejsy

Deklarowanie ogólnego interfejsu

interface IResult<T> {
    wasSuccessfull: boolean;
    error: T;
}

var result: IResult<string> = ....
var error: string = result.error;

Ogólny interfejs z wieloma parametrami typu

interface IRunnable<T, U> {
    run(input: T): U;
}

var runnable: IRunnable<string, number> = ...
var input: string;
var result: number = runnable.run(input);

Implementowanie ogólnego interfejsu

interface IResult<T>{
    wasSuccessfull: boolean;
    error: T;

    clone(): IResult<T>;
}

Zaimplementuj to z klasą ogólną:

class Result<T> implements IResult<T> {
    constructor(public result: boolean, public error: T) {
    }

    public clone(): IResult<T> {
        return new Result<T>(this.result, this.error);
    }
}

Zaimplementuj to z klasą inną niż ogólna:

class StringResult implements IResult<string> {
    constructor(public result: boolean, public error: string) {
    }

    public clone(): IResult<string> {
        return new StringResult(this.result, this.error);
    }
}

Klasa ogólna

class Result<T> {
    constructor(public wasSuccessful: boolean, public error: T) {
    }

    public clone(): Result<T> {
       ...
    }
}

let r1 = new Result(false, 'error: 42');  // Compiler infers T to string
let r2 = new Result(false, 42);           // Compiler infers T to number
let r3 = new Result<string>(true, null);  // Explicitly set T to string
let r4 = new Result<string>(true, 4);     // Compilation error because 4 is not a string

Ograniczenia ogólne

Proste ograniczenie:

interface IRunnable {
    run(): void;
}

interface IRunner<T extends IRunnable> {
    runSafe(runnable: T): void;
}

Bardziej złożone ograniczenie:

interface IRunnble<U> {
    run(): U;
}

interface IRunner<T extends IRunnable<U>, U> {
    runSafe(runnable: T): U;
}

Jeszcze bardziej złożony:

interface IRunnble<V> {
    run(parameter: U): V;
}

interface IRunner<T extends IRunnable<U, V>, U, V> {
    runSafe(runnable: T, parameter: U): V;
}

Ograniczenia typu wbudowanego:

interface IRunnable<T extends { run(): void }> {
    runSafe(runnable: T): void;
}

Funkcje ogólne

W interfejsach:

interface IRunner {
    runSafe<T extends IRunnable>(runnable: T): void;
}

W klasach:

class Runner implements IRunner {

    public runSafe<T extends IRunnable>(runnable: T): void {
        try {
            runnable.run();
        } catch(e) {
        }
    }

}

Proste funkcje:

function runSafe<T extends IRunnable>(runnable: T): void {
    try {
        runnable.run();
    } catch(e) {
    }
}

Korzystanie z ogólnych klas i funkcji:

Utwórz ogólną instancję klasy:

var stringRunnable = new Runnable<string>();

Uruchom funkcję ogólną:

function runSafe<T extends Runnable<U>, U>(runnable: T);

// Specify the generic types:
runSafe<Runnable<string>, string>(stringRunnable);

// Let typescript figure the generic types by himself:
runSafe(stringRunnable);

Wpisz parametry jako ograniczenia

W TypeScript 1.8 staje się możliwe, że ograniczenie parametru typu odwołuje się do parametrów typu z tej samej listy parametrów typu. Wcześniej był to błąd.

 function assign<T extends U, U>(target: T, source: U): T {
    for (let id in source) {
        target[id] = source[id];
    }
    return target;
}

let x = { a: 1, b: 2, c: 3, d: 4 };
assign(x, { b: 10, d: 20 });
assign(x, { e: 0 });  // Error


Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow