- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个特征正在使用另一个特征,现在我收到关于类中不存在的函数的错误。我简化了代码:
设置.php:
<?php
trait settings{
protected function getSetting($type, $setting){ // read setting from config.ini
try{
$configFile=dirname(__FILE__)."/../config.ini";
if(!file_exists($configFile)||!is_file($configFile))throw new Exception("Config file was not found. ");
$configContents=parse_ini_file($configFile,true);
if(is_array($configContents)&&array_key_exists($type,$configContents)&&is_array($configContents[$type])&&array_key_exists($setting,$configContents[$type]))return $configContents[$type][$setting];
else throw new Exception("Setting ".$setting." could not be found in ".$type.".");
}
catch(Exception $e){throw new Exception($e->getMessage());}
}
}
?>
数据库.php
<?php
trait database{
use settings,session;
private $pdo;
protected function connect(){ // connect to database
try{
$this->pdo=new PDO("mysql:host=".$this->getSetting("db","host").";dbname=".$this->getSetting("db","database"),$this->getSetting("db","user"),$this->getSetting("db","password"));
$this->init();
}
catch(PDOException $e){throw new Exception($e->getMessage());}
}
}
?>
用户.php
<?php
class users{
use database;
public function __construct(){
try{
$this->connect();
}
catch(Exception $e){throw new Exception($e->getMessage());}
}
public function __destruct(){
unset($this);
}
public function isAdmin(){
try{
if($this->loginStatus()===true){
}
else return false;
}
catch(Exception $e){throw new Exception($e->getMessage());}
}
public function loginStatus(){
if(!$this->getSession("tysus")||!$this->getSession("tyspw"))return false;// user is not logged in because we couldn't find session with username and/or password
if(!$this->userExists($this->getSession("tysus"),$this->getSession("tyspw")))return false;// user is unknown to database
return true;// other checks failed, user must be logged in
}
}
?>
现在我收到这个错误:
Fatal error: Call to undefined method users::readSetting() in /home/deb2371/domains/nonamenohistory.com/public_html/include/classes/class.database.php on line 18
我认为会发生这样的事情:类用户使用特征数据库,特征数据库将使用特征设置和特征 session 。
如果是这样,我就不会收到任何错误,但不幸的是,事实并非如此。
有人知道如何解决这个问题吗?
最佳答案
Code reuse is one of the most important aspects of object-oriented programming.
Multiple Traits
和Composing Multiple Traits
的简单示例,您可以通过它轻松分析您的情况。
一个类可以使用多个特征。以下示例演示如何在 IDE 类中使用多个特征。为了演示,它模拟了PHP中的C编译模型。
<?php
trait Preprocessor{
function preprocess() {
echo 'Preprocess...done'. '<br/>';
}
}
trait Compiler{
function compile() {
echo 'Compile code... done'. '<br/>';
}
}
trait Assembler{
function createObjCode() {
echo 'Create the object code files... done.' . '<br/>';
}
}
trait Linker{
function createExec(){
echo 'Create the executable file...done' . '<br/>';
}
}
class IDE{
use Preprocessor, Compiler, Assembler, Linker;
function run() {
$this->preprocess();
$this->compile();
$this->createObjCode();
$this->createExec();
echo 'Execute the file...done' . '<br/>';
}
}
$ide = new IDE();
$ide->run();
通过在特征声明中使用 use 语句,特征可以由其他特征组成。请参阅以下示例:
<?php
trait Reader{
public function read($source){
echo sprintf("Read from %s <br/>",$source);
}
}
trait Writer{
public function write($destination){
echo sprintf("Write to %s <br/>",$destination);
}
}
trait Copier{
use Reader, Writer;
public function copy($source,$destination){
$this->read($source);
$this->write($destination);
}
}
class FileUtil{
use Copier;
public function copyFile($source,$destination){
$this->copy($source, $destination);
}
}
关于php trait 使用另一个 trait,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20745907/
我正在尝试在具有相同特征的盒装特征对象上实现特征。我以前对其方法采用的特征做过这样的事情&Self,它工作得很好,但不是Self。。我意识到在这个特定的例子中,我可以将fn get_*()函数更改为返
在编写带有特征的代码时,您可以将特征放在特征边界中: use std::fmt::Debug; fn myfunction1(v: Box) { println!("{:?}", v); }
我有一个特征正在使用另一个特征,现在我收到关于类中不存在的函数的错误。我简化了代码: 设置.php: getMessage());} } } ?> 数据库.php pdo=new PDO("m
这个问题在这里已经有了答案: Why doesn't Rust support trait object upcasting? (4 个回答) 2年前关闭。 如果我有 Box , 我可以返回 &dyn
给定这段代码: trait Trait {} struct Child; impl Trait for Child {} struct Father { child: &'a Box, } i
这个问题的标题与许多相关问题非常相似,但我还没有找到一个讨论这个特定问题的问题。 我有一个 Color非常简单定义的类型,如下所示: pub struct Color { red: u8,
我有三个特点。 Trait Param、GroupId 和 SessionId。特征 GroupId 和 SessionId 包括 Param。 类 GroupSession 包括特征 GroupId
查看 Traversable 和 TraversableLike 的 scaladoc,我很难弄清楚它们之间的区别是什么(除了一个扩展另一个)。文档中唯一明显的区别是它说 Traversable 是一
我有以下代码: trait T { type AT; fn foo(&self); } struct AbstractT { t: Box>, } impl T for Abs
如何在 Rust 中尝试类似以下的操作? builder 类是一个 trait 对象,它返回另一个 trait 对象(类型删除),其中选择的实现由我们正在使用的 builder trait 的特定对象
我想创建一个新向量,其中包含实现 Trait 的对象,来 self 已有的包含这些对象的一些向量。 trait Foo { // } struct Bar { i: i32, } st
到目前为止,在我的项目中,我使用了许多特征来允许在单元测试中模拟/ stub 以注入(inject)依赖项。然而,到目前为止我正在做的事情的一个细节似乎非常可疑,以至于我很惊讶它甚至可以编译。我担心正
假设我有一些特质: trait MyTrait { fn function1(&self); } 和一些实现它的类型: struct MyStruct { number: i32, }
更新:不止我一个人在思考这个问题,看来这确实是一个错误。参见 here .修复的那一天将是美好的一天! :) 这开始为 I love PHP traits! I'm going to use them
以下特征Parser[+T]是扩展接受 Input 的函数的特征并返回 Result[T] . trait Parser[+T] extends (Input => Result[T]) 那是对的吗
我有一个类型,我可以通过它访问它的方法 SomeTrait::::method() 但我不明白那和之间的区别 >::method() 在 C++ 中,我希望这样: SomeTrait::method(
在下面的代码中,不可能从对实现相同特征的动态大小类型的引用中获得对特征对象的引用。为什么会这样呢?如果我可以同时调用trait方法,那么&dyn Trait和&(?Sized + Trait)之间到底
我是 Rust 的新手,我想通过实现一些小项目来学习这门语言并更好地理解。我的第一次尝试是解析从 MQTT 代理收到的 JSON 数据。 我很高兴在 tornado 的帮助下轻松完成这项工作。和 se
在下面的代码中,不可能从对实现相同特征的动态大小类型的引用中获得对特征对象的引用。为什么会这样呢?如果我可以同时调用trait方法,那么&dyn Trait和&(?Sized + Trait)之间到底
这个问题在这里已经有了答案: Why is the `Sized` bound necessary in this trait? (2 个回答) 1年前关闭。 我有一个特质 Vertex我想要几个结构
我是一名优秀的程序员,十分优秀!