首页 > php教程 > php手册 > 正文

References and Aliases are Different Mechanisms (zkarakaya )

php中文网
发布: 2016-06-21 09:10:32
原创
1164人浏览过

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;

 <br/><? <br/>class MyClass{ <br/>   var $myData; <br/>   var $outManager; <br/>    cfunction MyClass($p){ <br/>      $this->myData=$p; <br/>      $this->outManager = new MyOutManager($this); <br/>   } <br/>    cfunction display(){ <br/>      $this->outManager->display(); <br/>   } <br/>} <br/> class MyOutManager{ <br/>   var $refObj; <br/>    cfunction MyOutManager(&$obj){ <br/>      $this->refObj = &$obj; <br/>   } <br/>    cfunction display(){ <br/>      echo $this->refObj->myData; <br/>   } <br/>} <br/>$myvar = new MyClass(10); <br/>$myvar->myData = 20; <br/>$myvar->display(); <br/>?> <br/> 
登录后复制

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;

 <br/>$myvar = &new MyClass(10); <br/>
登录后复制

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



最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号