寄娛於學第2天——PHP骰子遊戲篇--最佳化

來源:互聯網
上載者:User

前一篇關於PHP版本的骰子遊戲詳見此),for迴圈的實現,在高並發下,效率顯然是非常地低的。

下面是最佳化結果,如果您有更好的方法,望不吝賜教!

 
  1. <?php 
  2. /** 
  3.  * Description of Dice 
  4.  * 
  5.  * @author momosweb(AT)qq.com 
  6.  */ 
  7. class Dice { 
  8.     private $dice_type = 6; // 骰子類型 
  9.     private $number = 1;    // 骰子數量 
  10.     private $people = 1;    // 玩家數量 
  11.      
  12.     /** 
  13.      * 設定骰子類型 
  14.      * @param int $dice_type 
  15.      */ 
  16.     public function set_dice($dice_type) 
  17.     { 
  18.         $dice_type = intval($dice_type); 
  19.         $this->dice_type = $dice_type ? $dice_type : $this->dice_type; 
  20.     } 
  21.  
  22.     /** 
  23.      * 設定骰子數量 
  24.      * @param int $number 
  25.      */ 
  26.     public function set_number($number) 
  27.     { 
  28.         $number = intval($number); 
  29.         $this->number = $number ? $number : $this->number; 
  30.     } 
  31.      
  32.     /** 
  33.      * 設定玩家數量 
  34.      * @param int $people 
  35.      */ 
  36.     public function set_people($people) 
  37.     { 
  38.         $people = intval($people); 
  39.         $this->people = $people ? $people : $this->people; 
  40.     } 
  41.  
  42.     /** 
  43.      * 返回骰子點數 
  44.      * @return intval 
  45.      */ 
  46.     private function roll() 
  47.     { 
  48.         return mt_rand(1, $this->dice_type); 
  49.     } 
  50.      
  51.     /** 
  52.      * 返回骰子遊戲結果 
  53.      * @return array 
  54.      */ 
  55.     public function result() 
  56.     {    
  57.         // 根據人數返回單次結果 
  58.         $fun_people = function() { 
  59.             // 構造骰子產生器 
  60.             $fun_game = function() { 
  61.                 return $this->roll(); 
  62.             }; 
  63.              
  64.             // 根據骰子數產生單次結果 
  65.             $arr_number = range(1, $this->number); 
  66.             return array_map($fun_game, $arr_number); 
  67.         }; 
  68.          
  69.         $arr_people = range(1, $this->people); 
  70.         $result = array_map($fun_people, $arr_people); 
  71.          
  72.         return $result; 
  73.     } 
  74.  
  75. $Dice = new Dice(); 
  76. $result = $Dice->result(); 
  77. var_dump($result); 
  78.  
  79. ?> 

哈哈,又到出題時間啦!如果需要比對最終結果,看誰的總點數最大呢?

本文出自 “大漠—寄娛於學” 部落格,請務必保留此出處http://saron.blog.51cto.com/2581496/1175780

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.