首页 php教程 php手册 ReferencesandAliasesareDifferentMechanismszkarakaya

ReferencesandAliasesareDifferentMechanismszkarakaya

Jun 13, 2016 am 10:23 AM

References and Aliases are Different Mechanisms Author: zkarakaya Date 14/03/2001 Aliasing and Referencing are completely different mechanisms in PHP. If you are Java or C++ programmer, you must be careful when using Objects created on run-time.
Lets see an example;
class MyClass{ var $myData; var $outManager; cfunction MyClass($p){ $this->myData=$p; $this->outManager = new MyOutManager($this); } cfunction display(){ $this->outManager->display(); } } class MyOutManager{ var $refObj; cfunction MyOutManager(&$obj){ $this->refObj = &$obj; } cfunction display(){ echo $this->refObj->myData; } } $myvar = new MyClass(10); $myvar->myData = 20; $myvar->display(); ?>
What value be the output of this program code. Many programmer will say "20", but this is not correct. Output is 10. Why? Because we have created an instance of MyClass type on the right hand side of assignment operator, and gave an initial value of 10. In the constructor of MyClass, we have send the memory location of that newly created instance to another object of type MyOutManager, and hold this value in $refObj. Now the reference count for this object is 1, which is $refObf property of outManager instance. Lets continue the execution. Constructor has finished its job and returned to assignment operator. PHP4 now creates a new reference named $myvar to newly created object. Now the reference count of that object is 2. Be careful that $myvar is not an alies. So that when you execute the next statement, which assigns a value 20 to its property named $myData, PHP4 creates a new instance of MyClass type, copies the contents of old one which is also referenced by its member outManager. And then changes the contents of myData to 20.


>From now on you will have two different instance of type MyClass. Our intend was not this. So to correct this problem, use alias on the object creation statement, that is use;
$myvar = &new MyClass(10);
This will solve the problem. So if you are C++ and Java programmer, you must be careful in writing PHP codes.
This description does not conflict with the information given in the PHP 4: Reference Counting and Aliasing written by Andi Gutmans.
Ziya Karakaya
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前 By 尊渡假赌尊渡假赌尊渡假赌
仓库:如何复兴队友
1 个月前 By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
4 周前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)