Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,950 questions

51,892 answers

573 users

How to use class interface in TypeScript

2 Answers

0 votes
interface IPerson {
    iName: string;
    display():void;
    //getSalary(): void;
}

class Employee implements IPerson {
    eID: number;
    iName: string;
    
    constructor(ID: number, name: string) {
        this.eID = ID;
        this.iName = name;
    }
    
    display = () => console.log(this.eID + ' ' + this.iName)

    getSalary() : number {
        return 19250;
    }
}

let per:IPerson = new Employee(857421, 'Professor Albus Dumbledore');

per.display();

// console.log(per.getSalary()); // Property 'getSalary' does not exist on type 'IPerson'.(2339)
    
 

    
/*
    
run:
    
"857421 Professor Albus Dumbledore"
   
*/

 



answered Oct 25, 2021 by avibootz
0 votes
interface IPerson {
    iName: string;
    display():void;
    getSalary(): void;
}

class Employee implements IPerson {
    eID: number;
    iName: string;
    
    constructor(ID: number, name: string) {
        this.eID = ID;
        this.iName = name;
    }
    
    display = () => console.log(this.eID + ' ' + this.iName)

    getSalary() : number {
        return 19250;
    }
}

let per:IPerson = new Employee(857421, 'Professor Albus Dumbledore');

per.display();

console.log(per.getSalary()); 
    
 

    
/*
    
run:
    
"857421 Professor Albus Dumbledore"
19250 
   
*/

 



answered Oct 25, 2021 by avibootz

Related questions

1 answer 100 views
100 views asked Sep 11, 2020 by avibootz
1 answer 159 views
1 answer 173 views
1 answer 226 views
1 answer 158 views
1 answer 154 views
...