cannot be applied to

错误示例:

cannot be applied to_第1张图片

代码块

public class Test {
    public static void main(String[] args) {
         test(111);
    }

    public static void test(String str) {
        System.out.println(str);
    }
}

错误分析

test(String str)传入String类型的变量,所以非String类型的变量不能applied到Test类的test(String str)方法上。

错误解决

cannot be applied to_第2张图片

总结

cannot be applied to 这种错误是由于传入的参数类型不相符

你可能感兴趣的:(java基础)