求php一段递归代码的理解
function test() { static $count = 0; $count++; echo "-- ".$count." --\n"; if ($count < 10) { test(); } $count--; echo "## ".$count." ##\n"; } test();
结果输出如下:
-- 1 -- -- 2 -- -- 3 -- -- 4 -- -- 5 -- -- 6 -- -- 7 -- -- 8 -- -- 9 -- -- 10 -- ## 9 ## ## 8 ## ## 7 ## ## 6 ## ## 5 ## ## 4 ## ## 3 ## ## 2 ## ## 1 ## ## 0 ##
我的疑惑是 当$count
加到10后就不会再调用自身了,那么它会运行下面的代码$count--
然后输出就结束了,可是为什么它还是运行了9次呢,求高手解答。
回复内容:
function test() { static $count = 0; $count++; echo "-- ".$count." --\n"; if ($count < 10) { test(); } $count--; echo "## ".$count." ##\n"; } test();
结果输出如下:
-- 1 -- -- 2 -- -- 3 -- -- 4 -- -- 5 -- -- 6 -- -- 7 -- -- 8 -- -- 9 -- -- 10 -- ## 9 ## ## 8 ## ## 7 ## ## 6 ## ## 5 ## ## 4 ## ## 3 ## ## 2 ## ## 1 ## ## 0 ##
我的疑惑是 当$count
加到10后就不会再调用自身了,那么它会运行下面的代码$count--
然后输出就结束了,可是为什么它还是运行了9次呢,求高手解答。
这样吧,我们假设让$count小于2时来看看整个执行过程:
将小于10改为小于2:
<code> function test() { static $count = 0; $count++; echo "-- ".$count." --\n"; if ($count < 2) { test(); } $count--; echo "## ".$count." ##\n"; } </code>
2.将小于2时,里面递归的test()换成函数体内的代码:
<code>function test() { static $count = 0; // line 1 $count++; // line 2 echo "-- ".$count." --\n"; // line 3 if ($count < 2) { // line4 static $count = 0; $count++; // line 5 echo "-- ".$count." --\n";// line 6 if ($count < 2) {// line 7 test(); } $count--;// line 8 echo "## ".$count." ##\n";// line 9 } $count--;// line 10 echo "## ".$count." ##\n";// line 11 } </code>
3.调用 test()后
<code>test() </code>
4.来看整个详细的执行流程:
<code> 4.1 第一次,line 1:$count = 0; 4.2 执行line 2后,$count = 1; 4.3 所以在line 3 会输出: **-- 1 --** 4.4 接着执行line 4,由于现在 $count < 2为真; 4.5 所以执行 line5后变为2 4.6 所以 line 6 会输出: **-- 2 --** 4.7 然后到 line 7,由于 $count = 2,不小于2直接执行line 8 4.8 line 8 执行后, $count变为1,接着执行line 9 4.9 在line 9 会输出: **## 1 ##** 4.10 接着就执行 line 10,$count再减1,就变为0 4.11 因此在 line 11会输出: **## 0 ##** </code>
5.总结:
当我们假定 $count小于2时,在上面详细的执行流程中我们看到:
test()总共被执行了2次,
输出结果为:
-- 1 --,-- 2 --,## 1 ##,## 0 ##
这时候再回头将 $count小于10,就容易解释楼主的疑问了。
不知道是否帮助到了你。有疑问继续联系。
没有再运行9次呀,test
函数只运行了10次。但是每个函数中有两个输出,所以总共输出了20次。
有没有return不会停止,在调用他自己后还会继续执行的
因为当$count
=10的时候,该段代码还是执行了,你可以这样写
<code>function test() { static $count = 0; $count++; echo "-- ".$count." --<br/>"; if ($count < 10) { test(); $count--; echo "## ".$count." ##<br/>"; } } test();</code>
@phping 这是我对于刚才递归的理解,和你的类似。
function test() { static $count = 0; // 初始化静态变量$count $count++; // $count = 1; echo "-- ".$count." --\n"; // 输出 1 if($count < 3) { // 1 小于 3 为真 static $count = 0; // 初始 $count++; // $count = 2; echo "-- ".$count." --\n"; // 输出 2 if($count < 3) { // 2 小于 3 为真 static $count = 0; // 初始 $count++; // $count = 3 echo "-- ".$count." --\n"; // 输出 3 if($count < 3) {} // 3 不小于 3 为假 $count--; // $count = 2; echo "## ".$count." ##\n"; // 减后输出 2 } $count--; // $count = 1 echo "## ".$count." ##\n"; // 减后输出 1 } $count--; // $count = 0; echo "## ".$count." ##\n"; // 减后输出 0 } test();
最后输出
-- 1 -- -- 2 -- -- 3 -- ## 2 ## ## 1 ## ## 0 ##

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
