- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
引自 Autoloading Classes :
Many developers writing object-oriented applications create one PHP source file per class definition. One of the biggest annoyances is having to write a long list of needed includes at the beginning of each script (one for each class).
In PHP 5, this is no longer necessary. The spl_autoload_register() function registers any number of autoloaders, enabling for classes and interfaces to be automatically loaded if they are currently not defined. By registering autoloaders, PHP is given a last chance to load the class or interface before it fails with an error.
问题来了,如果一个php文件中有多个class,适合autoload使用吗?还是我必须使用 require filepath
语句?
比如我在Protobuf\Client.php下有一个协议(protocol)文件:
<?php
namespace Protobuf;
class A {
...
}
class B {
...
}
最佳答案
您必须有一些复杂的函数才能从名为 Client.php
的文件中自动加载这些类。这个想法是将您的 namespace\classname
翻译成 directory\filename.php
在这种情况下,您需要将文件命名为 A.php
,然后当您调用 new Protobuf\A()
时,它会找到它。否则,您将不得不创建一个过于复杂的自动加载器。
假设您确实创建了自动加载器,因此它找到了 A
类,然后您可以在同一个文件上拥有 B
,但前提是您已经自动加载了 >A
否则你必须做一些算法才能知道 A
和 B
在同一页面上。
我会采用上述模式或像 Magento 这样的应用程序采用的模式,通过替换下划线将类名转换为目录路径:
$class = new Core_Classes_MyClass_Client();
您的自动加载器将替换下划线并加载:
Core/Classes/MyClass/Client.php //or similar scheme
这对我来说是一种简单的方法,但我更喜欢使用命名空间和类。上面的方法目前并不受欢迎,从命名的角度来看,很容易混淆,因为很多类可能在同一个文件夹中,或者嵌套在子文件夹中。您可以获得一些非常长的类命名。
关于PHP: AutoLoader 是否能够在单个 php 文件中加载多个类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37982012/
我正在使用 Java 编写一个时钟程序,该程序能够“滴答作响”,但它存在问题。我认为它与 getter 和 setter 或 toString() 方法有关。 计数器类 package clock;
const Index = () => { // Ref Links const frefLinks = { 1: useRef(1), 2: useRef(2), 3: useRef(3
所以我读了here不能 pickle 装饰函数。确实: import multiprocessing as mp def deco(f): def wrapper(*args, **kwarg
我在go1.11.2 linux/amd64 版本。当包godog使用 go get github.com/DATA-DOG/godog/ 安装,godog 可执行文件在 $GOPATH/bin/中创
如何正确压缩字符串,以便 PHP 能够解压缩? 我试过这个: public static byte[] compress(String string) throws IOException {
我们这里的问题是表明 在测试中使用 Kleene 代数。 在 b 的值由 p 保留的情况下,我们有交换条件 bp = pb;两个程序之间的等价性简化为等式 在 b 的值不被 p 保留的情况下,我们有交
我有一个与我的网络相关的非常奇怪的问题,我在具有多个接口(interface)的 VirtualBox 上安装了 RDO Grizzly OpenStack。 虚拟盒子: eth0 - managem
我正在尝试使用 Passport.js授权谷歌OAuth2在 Node.js .我整个星期都在尝试让它工作,但不知道为什么它不工作,所以现在我求助于 stack 寻求一些潜在的帮助。我已经尝试了所有在
我是一名优秀的程序员,十分优秀!