0

我正在尝试创建库或包(我不知道哪个好),以便我/其他团队成员可以扩展它并添加他们的功能主义者。

一般来说,我想创建可以扩展(不使用)的库/包。必须有必须由其他用户扩展的抽象类

这是我的抽象课

abstract class BaseTable{
    abstract function createQuery();
    abstract function render();
    /*
    there are other concrete function but i did not mentioned here
    */
}

所以目的是让我或其他人扩展这个类。

4

1 回答 1

0

在 Codeigniter 中加载库
,本教程将帮助 http://ellislab.com/codeigniter%20/user-guide/general/creating_libraries.html

于 2013-10-28T13:25:11.867 回答