0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

TypeScriptのinterfaceについて

Last updated at Posted at 2023-02-05

TypeScriptのインターフェイスは、オブジェクトの型を定義するためのものです。
インターフェイスは、プロパティ、メソッド、およびイベントのシグネチャーを定義します。
実装者はこのシグネチャーに従って、オブジェクトを作成することが求められます。

例:

interface MyInterface {
  value: string;
  printValue(): void;
}

class MyClass implements MyInterface {
  constructor(public value: string) {}

  printValue() {
    console.log(this.value);
  }
}

const instance = new MyClass("Hello, TypeScript!");
instance.printValue(); // "Hello, TypeScript!"

このように、インターフェイスは、オブジェクトが持つべきプロパティやメソッドなどのシグネチャーを定義することで、コードの互換性を保証します。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?