gpt4 book ai didi

java - apples 类型的 Ash() 方法未定义

转载 作者:行者123 更新时间:2023-11-30 10:43:05 24 4
gpt4 key购买 nike

我是 Java 新手,或者说是编程新手。我是通过观看 Bucky 教程开始学习 Java 的。这是我的代码。

import java.util.Scanner;
class apples {
public static void main(String args[]){
Scanner Ash = new Scanner (System.in);
System.out.println(Ash());
}
}

我无法编译这段代码。我收到一条消息

Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The method Ash() is undefined for the type apples

at apples.main(apples.java:5)

上面的消息是什么意思?在扫描仪的帮助下,我在键盘上输入的任何内容都会转到名为 Ash 的变量。但是为什么 Println 不能打印 Ash() 的那个值。但是如果我使用 Ash.nextLine(), 代码不会产生任何预热。如果没有定义Ash,那么如何定义Ash.nextLine()?

最佳答案

 System.out.println(Ash());

这被认为是一种方法而不是变量。

你可能想要

 System.out.println(Ash);

请注意,根据命名约定,变量名称以小写字母开头。

 Scanner ash = new Scanner (System.in);
System.out.println(ash);

您可能想按顺序浏览官方 Java 文档。不仅仅是一些随机教程。

关于java - apples 类型的 Ash() 方法未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37893228/

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