ホームページ > 記事 > ウェブフロントエンド > Type Script の readonly と const の違い
これら 2 つの機能は、両方とも割り当てできないという点で似ています。
正確に説明していただけますか?
この記事では、それらの違いについて説明します。
この場合、hisName は再割り当てできない変数です。
const hisName = 'Michael Scofield' hisName = 'Lincoln Burrows' // → ❌ Cannot assign to 'hisName' because it is a constant.
ただし、プロパティに再割り当てすることはできます。
const hisFamily = { brother: 'Lincoln Burrows' } hisFamily.brother = '' // → ⭕️ hisFamily = { mother: 'Christina Rose Scofield' } // → ❌ Cannot assign to 'hisFamily' because it is a constant.
たとえば、readonly で Brother に値を代入しようとすると、コンパイル エラーが発生します。
let hisFamily: { readonly brother: string } = { brother: 'Lincoln Burrows' } hisFamily.brother = '' // → ❌ Cannot assign to 'brother' because it is a read-only property.
一方、変数自体への代入は許可されています。
let hisFamily: { readonly brother: string } = { brother: 'Lincoln Burrows' } hisFamily = { brother: '' } // → ⭕️
const は変数自体を代入できなくなりますが、readonly はプロパティを代入できなくなります。
const と readonly を組み合わせることで、変数自体とオブジェクトのプロパティの両方が不変であるオブジェクトを作成できます。
const hisFamily: { readonly brother: string } = { brother: 'Lincoln Burrows' } hisFamily.brother = '' // ❌ Cannot assign to 'brother' because it is a read-only property. hisFamily = { brother: '' } // ❌ Cannot assign to 'hisFamily' because it is a constant.
コーディングを楽しんでください☀️
以上がType Script の readonly と const の違いの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。