TypeScriptの暗黙のアクセス修飾子とは?
TypeScriptにおける暗黙のアクセス修飾子
暗黙のアクセス修飾子は、TypeScriptのバージョンによって異なります。
TypeScript 3.x 以前
- protected
メンバーは、そのメンバーが定義されているクラス内、およびそのサブクラスからアクセス可能です。 - public
メンバーは、クラス内外のどこからでもアクセス可能です。これがデフォルトのアクセス修飾子です。
- readonly
メンバーは、読み取り専用です。つまり、そのメンバーの値を変更することはできませんが、その値を読み取ることはできます。
例
class Person {
// 暗黙のアクセス修飾子は `public`
name: string;
// 暗黙のアクセス修飾子は `private`
private age: number;
// 暗黙のアクセス修飾子は `protected`
protected address: string;
constructor(name: string, age: number, address: string) {
this.name = name;
this.age = age;
this.address = address;
}
// 暗黙のアクセス修飾子は `public`
getName(): string {
return this.name;
}
// 暗黙のアクセス修飾子は `private`
private getAge(): number {
return this.age;
}
// 暗黙のアクセス修飾子は `protected`
protected getAddress(): string {
return this.address;
}
}
const person = new Person('John Doe', 30, '123 Main Street');
// `name` プロパティは `public` なので、どこからでもアクセス可能
console.log(person.name); // 出力: John Doe
// `age` プロパティは `private` なので、クラス内からのみアクセス可能
// console.log(person.age); // エラー: 'age' はプライベート メンバーです。
// `address` プロパティは `protected` なので、サブクラスからはアクセス可能
class Employee extends Person {
constructor(name: string, age: number, address: string, jobTitle: string) {
super(name, age, address);
this.jobTitle = jobTitle;
}
getJobTitle(): string {
return this.jobTitle;
}
// `address` プロパティは `protected` なので、サブクラスからアクセス可能
getProtectedAddress(): string {
return this.address;
}
}
const employee = new Employee('John Doe', 30, '123 Main Street', 'Software Engineer');
// `address` プロパティは `protected` なので、サブクラスからはアクセス可能
console.log(employee.getProtectedAddress()); // 出力: 123 Main Street
- 暗黙のアクセス修飾子を適切に理解することで、より安全で保守しやすいコードを書くことができます。
- アクセス修飾子を明示的に指定していない場合、暗黙のアクセス修飾子が適用されます。
- TypeScriptでは、アクセス修飾子を使用して、クラスメンバーへのアクセス範囲を制御することができます。
class Person {
// 暗黙のアクセス修飾子は `public`
name: string;
// 暗黙のアクセス修飾子は `private`
private age: number;
// 暗黙のアクセス修飾子は `protected`
protected address: string;
constructor(name: string, age: number, address: string) {
this.name = name;
this.age = age;
this.address = address;
}
// 暗黙のアクセス修飾子は `public`
getName(): string {
return this.name;
}
// 暗黙のアクセス修飾子は `private`
private getAge(): number {
return this.age;
}
// 暗黙のアクセス修飾子は `protected`
protected getAddress(): string {
return this.address;
}
}
暗黙のアクセス修飾子の使用方法
const person = new Person('John Doe', 30, '123 Main Street');
// `name` プロパティは `public` なので、どこからでもアクセス可能
console.log(person.name); // 出力: John Doe
// `age` プロパティは `private` なので、クラス内からのみアクセス可能
// console.log(person.age); // エラー: 'age' はプライベート メンバーです。
// `address` プロパティは `protected` なので、サブクラスからはアクセス可能
class Employee extends Person {
constructor(name: string, age: number, address: string, jobTitle: string) {
super(name, age, address);
this.jobTitle = jobTitle;
}
getJobTitle(): string {
return this.jobTitle;
}
// `address` プロパティは `protected` なので、サブクラスからアクセス可能
getProtectedAddress(): string {
return this.address;
}
}
const employee = new Employee('John Doe', 30, '123 Main Street', 'Software Engineer');
// `address` プロパティは `protected` なので、サブクラスからはアクセス可能
console.log(employee.getProtectedAddress()); // 出力: 123 Main Street
- 特に、チームで開発を行う場合は、明示的にアクセス修飾子を指定することを強くお勧めします。
- 明示的にアクセス修飾子を指定することで、コードの意図をより明確に伝えることができます。
- 暗黙のアクセス修飾子は、コードの可読性と保守性を低下させる可能性があります。
環境変数を使用して、アクセス修飾子を動的に設定することができます。これは、本番環境と開発環境で異なるアクセス修飾子を使用したい場合などに役立ちます。
function getAccessLevel(): string {
return process.env.ACCESS_LEVEL || 'public';
}
class Person {
private name: string;
constructor(name: string) {
this.name = name;
}
getName(): string {
if (getAccessLevel() === 'public') {
return this.name;
} else {
return 'アクセス許可がありません';
}
}
}
デコレータ
デコレータを使用して、アクセス修飾子を指定することができます。デコレータは、より記述的で柔軟な方法でアクセス修飾子を定義するのに役立ちます。
function publicDecorator(target: any, propertyKey: string, descriptor: PropertyDescriptor) {
descriptor.enumerable = true;
descriptor.configurable = true;
if (typeof descriptor.value === 'function') {
descriptor.value = function (...args: any[]) {
return this.name;
};
}
}
class Person {
private name: string;
constructor(name: string) {
this.name = name;
}
@publicDecorator
getName(): string {
return this.name;
}
}
型パラメーター
型パラメーターを使用して、アクセス修飾子をジェネリックに指定することができます。これは、さまざまなアクセス修飾子を持つ複数のクラスを定義したい場合などに役立ちます。
type AccessLevel = 'public' | 'private' | 'protected';
class Person<T extends AccessLevel> {
private name: string;
constructor(name: string) {
this.name = name;
}
getName(): string {
if (T === 'public') {
return this.name;
} else {
return 'アクセス許可がありません';
}
}
}
const publicPerson = new Person<"public">('John Doe');
const privatePerson = new Person<"private">('Jane Doe');
console.log(publicPerson.getName()); // 出力: John Doe
console.log(privatePerson.getName()); // 出力: アクセス許可がありません
注意事項
- コードをよりシンプルで理解しやすくするために、従来のアクセス修飾子キーワードを使用することをお勧めします。
- これらの方法は、より高度な TypeScriptの機能を使用するため、すべての開発者に適しているとは限りません。
- 上記の方法は、従来のアクセス修飾子キーワードよりも複雑で、理解しにくい場合があります。
typescript access-modifiers