gpt4 book ai didi

java - ArrayList 在 PHP 中的实现

转载 作者:行者123 更新时间:2023-11-29 06:17:49 25 4
gpt4 key购买 nike

我已经尝试在 PHP 中实现 ArrayList (Java) 的基本功能。Arraylist 应该能够添加任何类型的对象(在 Java 中是通用的)任何人都可以提出改进设计/实现的建议。这是代码

<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

class ArrayList
{

private $arrVar;

function __construct($option)
{
$this->arrVar = array();
array_push($this->arrVar,$option);
}

function addValue($option)
{
array_push($this->arrVar,$option);
}

function getLastValue()
{
$arr = array_pop($this->arrVar);
return $arr;
}

}



?>

最佳答案

除了限制我可以对数组执行的操作外,您的类实际上没有做任何事情。通常最好采用特定语言常用的习语,而不是试图让该语言与您喜欢的其他语言相似。

关于java - ArrayList 在 PHP 中的实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4390018/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com