我正在寻找模仿C#使用/实现接口的方式。简而言之,我正在尝试复制以下代码:
interface EBook {
function read();
}
class EBookReader {
private $book;
function __construct(EBook $book) {
$this->book = $book;
}
function read() {
return $this->book->read();
}
}
class PDFBook implements EBook {
function read() {
return "reading a pdf book.";
}
}
class MobiBook implements EBook {
function read() {
return "reading a mobi book.";
}
}
使用工具可以正常工作但是我无法模仿使用Ebook作为类型的Class EBookReader方式。
使用我的代码模型编写代码:http://codepen.io/Ornhoj/pen/gLMELX?editors=0012
答案 0 :(得分:2)
使用Ebook作为类型
案件很敏感。
interface IEBook {
read();
}
class EBookReader {
book: IEBook;
constructor(book: IEBook) {
this.book = book;
}
read() {
this.book.read();
}
}
class PDFBook implements IEBook {
read() {
console.log("reading a pdf book.");
}
}
class MobiBook implements IEBook {
read() {
console.log("reading a mobi book.");
}
}
var pdf = new PDFBook();
var reader = new EBookReader(pdf);
reader.read();
测试此代码in the playground。