当我尝试获取父母的名字时,出现错误
试图获取非对象的属性“名称”
在,不知道为什么。我在functions.php
中编写此代码public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("\033[10;10H"); // move cursor to arbitrary pos, let's choose (10, 10)
System.out.print("\033[6n"); // requests cursor position
String response = scanner.nextLine();
scanner.close();
}