當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Ds\Stack isEmpty()用法及代碼示例


PHP Ds \ Stack類的Ds \ Stack::isEmpty()函數用於檢查Stack是否為空。此方法返回一個布爾值,如果Stack為空,則返回True,否則返回False。

用法

bool public Ds\Stack::isEmpty ( void )

參數:此函數不接受任何參數。


返回值:如果堆棧為空,則此函數返回布爾值True,否則返回False。

以下示例程序旨在說明Ds \ Stack::isEmpty()函數:

程序1:

<?php 
  
// PHP program to illustarte the  
// isEmpty() function  
  
// Create a Stack instance 
$stack = new \Ds\Stack(); 
  
// Check if stack is Empty 
var_dump($stack->isEmpty()); 
  
// Pushing elements to Stack 
$stack->push("Welcome"); 
$stack->push("to"); 
$stack->push("GfG"); 
  
// Check if stack is Empty again 
var_dump($stack->isEmpty()); 
  
?>

輸出

bool(true)
bool(false)

程序2:

<?php 
  
// PHP program to illustarte the  
// isEmpty() function  
  
// Create a Stack instance 
$stack = new \Ds\Stack(); 
  
// Check if stack is Empty 
var_dump($stack->isEmpty()); 
  
// Pushing Mixed value elements to Stack 
$stack->push("Welcome"); 
$stack->push("to"); 
$stack->push("GfG"); 
$stack->push(10); 
$stack->push(5.5); 
  
// Check if stack is Empty again 
var_dump($stack->isEmpty()); 
  
?>

輸出

bool(true)
bool(false)

參考:http://php.net/manual/en/ds-stack.isempty.php



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP | Ds\Stack isEmpty() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。