SplPriorityQueue::isCorrupted()函數是PHP中的一個內置函數,用於告訴優先級隊列是否處於損壞狀態。
用法:
bool SplPriorityQueue::isCorrupted()
參數:此函數不接受任何參數。
返回值:如果優先級隊列已損壞,則此函數返回true,否則返回false。
例:
PHP
<?php
// Declare a class
class priorityQueue extends SplPriorityQueue {
// Compare function to compare priority
// queue elements
public function compare($p1, $p2) {
if ($p1 === $p2) return 0;
return $p1 < $p2 ? -1:1;
}
}
// Create an object of priority queue
$obj = new priorityQueue();
// Insert elements into the queue
$obj->insert("Geeks",2);
$obj->insert("GFG",1);
$obj->insert("G4G",3);
$obj->insert('G',4);
// Use isCorrupted() function to check
// priority queue is in corrupted state
// or not
var_dump($obj->isCorrupted());
?>
輸出
bool(false)
參考:https://www.php.net/manual/en/splpriorityqueue.iscorrupted.php
相關用法
- PHP SplHeap isCorrupted()用法及代碼示例
- PHP SplPriorityQueue isEmpty()用法及代碼示例
- PHP SplPriorityQueue key()用法及代碼示例
- PHP SplPriorityQueue next()用法及代碼示例
- PHP SplPriorityQueue rewind()用法及代碼示例
- PHP SplPriorityQueue insert()用法及代碼示例
- PHP SplPriorityQueue extract()用法及代碼示例
- PHP SplPriorityQueue current()用法及代碼示例
- PHP SplPriorityQueue count()用法及代碼示例
- PHP SplPriorityQueue compare()用法及代碼示例
- PHP imagecreatetruecolor()用法及代碼示例
- PHP fpassthru( )用法及代碼示例
- PHP ImagickDraw getTextAlignment()用法及代碼示例
- PHP Ds\Sequence last()用法及代碼示例
- PHP Imagick floodFillPaintImage()用法及代碼示例
- PHP array_udiff_uassoc()用法及代碼示例
- PHP geoip_continent_code_by_name()用法及代碼示例
- PHP GmagickPixel setcolor()用法及代碼示例
注:本文由純淨天空篩選整理自AshokJaiswal大神的英文原創作品 PHP SplPriorityQueue isCorrupted() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。