gpt4 book ai didi

java - 如何正确调用方法

转载 作者:行者123 更新时间:2023-12-01 07:21:28 25 4
gpt4 key购买 nike

我早些时候发布了此类问题,但我得到了否定的答复,因为我没有展示我的尝试。所以我再次发布这篇文章,包括我的尝试,但我仍然不明白 Java 中的方法是如何工作的。这是我的尝试:

import java.util.Scanner;

public class MethodTest {

public static exception(String name) {

if (name == Abudi) {
System.out.println("Your " + name + " is not allowed to proceed");
}
}

public static void main(String args[]) {

Scanner sc = new Scanner(System.in);
exception pc = new exception();
String name;
System.out.print("Enter your name here: "); name = sc.nextLine();

pc.exception(name);
}
}

如何正确调用异常方法?谢谢。

最佳答案

你可以看看这个程序。它只需要输入一次并关闭。但您将能够理解该方法是如何工作的。

import java.util.Scanner;

public class ExceptionTest {

public static void exception(String name) {

if (name.equals("Abudi")) {
System.out.println("Your " + name + " is not allowed to proceed");
}
}

public static void main(String args[]) {

Scanner sc = new Scanner(System.in);

//exception1(sc.next());
String name;
System.out.print("Enter your name here: ");
name = sc.nextLine();

exception(name);
sc.close();
}
}

关于java - 如何正确调用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35972254/

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