mirror of
https://github.com/php/doc-ja.git
synced 2026-03-27 08:32:09 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@330348 c90b9560-bf6c-de11-be94-00142212c4b1
93 lines
2.1 KiB
XML
93 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 1634a886415d0ab4df195fe49d18a1c150b70758 Maintainer: takagi Status: ready -->
|
|
|
|
<book xml:id="book.weakref" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<title>弱い参照</title>
|
|
<titleabbrev>Weakref</titleabbrev>
|
|
|
|
<preface xml:id="intro.weakref">
|
|
&reftitle.intro;
|
|
<para>
|
|
一時的なオブジェクトへの、非侵入型のゲートウェイを提供します。
|
|
通常の (強い) 参照とは異なり、弱い参照はガベージコレクタがオブジェクトを解放するのを邪魔しません。
|
|
そのため、オブジェクトが破棄された後でもそのオブジェクトへの弱い参照が残っている可能性があります。
|
|
そんな場合は、弱い参照は自動的に無効になります。
|
|
</para>
|
|
|
|
<para>
|
|
<example>
|
|
<title><classname>Weakref</classname> の使用例</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
class MyClass {
|
|
public function __destruct() {
|
|
echo "Destroying object!\n";
|
|
}
|
|
}
|
|
|
|
$o1 = new MyClass;
|
|
|
|
$r1 = new Weakref($o1);
|
|
|
|
if ($r1->valid()) {
|
|
echo "Object still exists!\n";
|
|
var_dump($r1->get());
|
|
} else {
|
|
echo "Object is dead!\n";
|
|
}
|
|
|
|
unset($o1);
|
|
|
|
if ($r1->valid()) {
|
|
echo "Object still exists!\n";
|
|
var_dump($r1->get());
|
|
} else {
|
|
echo "Object is dead!\n";
|
|
}
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
Object still exists!
|
|
object(MyClass)#1 (0) {
|
|
}
|
|
Destroying object!
|
|
Object is dead!
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
</preface>
|
|
|
|
&reference.weakref.setup;
|
|
&reference.weakref.weakref;
|
|
&reference.weakref.weakmap;
|
|
|
|
</book>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|
|
|