Câu hỏi của Lê Minh Châu

Dấu "..." chỗ "...explode()" có tác dụng gì vậy ạ?

public function direct($uri, $requestType) { if (array_key_exists($uri, $this->routes[$requestType])) { return $this->callAction( ...explode("@", $this->routes[$requestType][$uri]) ); } throw new Exception('No route defined for this URI'); ...

Lê Minh Châu viết 13:49 ngày 01/10/2018 chỉnh sửa

Nhờ mọi người giải thích giúp em đoạn code trong java này với ạ!

class GenQueue<E> { private LinkedList<E> list = new LinkedList<E>(); public void enqueue(E item) { list.addLast(item); } public E dequeue() { return list.poll(); } public boolean hasItems() { return !list.isEmpty(); } public int size() ...

Lê Minh Châu viết 23:55 ngày 30/09/2018 chỉnh sửa
1