PHP | Función Ds\\Stack isEmpty()

La función Ds\Stack::isEmpty() de la clase PHP Ds\Stack se usa para verificar si una pila está vacía o no. Este método devuelve un valor booleano, True si la pila está vacía; de lo contrario, devuelve False.

Sintaxis

bool public Ds\Stack::isEmpty ( void )

Parámetro : esta función no acepta ningún parámetro.
Valor devuelto : esta función devuelve un valor booleano verdadero si la pila está vacía; de lo contrario, devuelve falso.

Los siguientes programas ilustran la función Ds\Stack::isEmpty() :

Programa 1 :  

PHP

<?php
 
// PHP program to illustrate the
// Ds\stack::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());
 
?>

Salida

bool(true)
bool(false)

Programa 2

PHP

<?php
 
// PHP program to illustrate the
// Ds\stack::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());
 
?>

Salida

bool(true)
bool(false)

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

Publicación traducida automáticamente

Artículo escrito por gopaldave y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *