gpt4 book ai didi

java - 获取错误消息 "the method asList(string[]) is undefined for the type arrays"

转载 作者:行者123 更新时间:2023-11-30 10:48:04 33 4
gpt4 key购买 nike

import java.util.*;

public class ZCollMethods {

public static void main(String[] args) {
String[] animals = {"dog", "cat", "mouse", "goat"};
List<String> list = Arrays.asList(animals);

上面一行给出了一个错误信息

the method asList(string[]) is undefined for the type arrays

有人请帮忙。我只是一个初学者,我无法继续前进。

最佳答案

或者改变这行代码

 List<String> list = Arrays.asList(animals); 

List<String> list = java.util.Arrays.asList(animals);

更改您的全局导入声明 java.util.*具体java.util.Arrays可能会解决您的问题。

关于java - 获取错误消息 "the method asList(string[]) is undefined for the type arrays",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35960748/

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