30/09/2018, 19:56
Lỗi java.lang.NullPointerException
Mình viết thử một chương trình Java như sau thì bị lỗi java.lang.NullPointerException:
import java.io.Console;
public class MovieRating {
public static void main(String[] args) {
Console console = System.console();
String name = "John";
console.printf("Nice to meet you, ", name);
}
}
Mình compile trực tiếp trên terminal thì ok nhưng chạy trên intellij thì nó ra như vậy, cũng chẳng biết thế là thế nào
Bài liên quan
System.console() returns null