java
文章平均质量分 58
baifenzhier
这个作者很懒,什么都没留下…
展开
-
【java】报错 :void is an invalid type for the variable sumInt
问题【Java】void is an invalid type for the variable sumInt【Java】The method sumInt(int, int) is undefined for the type MethodTest02翻译: void 是变量 sumInt 的无效类型对于类型 MethodTest02,方法 sumInt(int, int) 是未定义的原因查看了这篇文章:原因参考“ 在一个方法中定义了另一个方法,这在java中是不允许的。”我在主方原创 2022-04-11 19:15:10 · 1211 阅读 · 0 评论 -
【Java】 java.util.scanner cannot be resolved to a type
day05第一个 java.util.scanner cannot be resolved to a typeJava编写键盘输入时出现:Multiple markers at this line - java.util.scanner cannot be resolved to a type - java.util.scannner cannot be resolved to a type第一个问题是:没有引用包解决:最上边添加import java.util.Scanne原创 2022-04-04 12:14:02 · 6402 阅读 · 3 评论 -
【Java】 在类 VarTest03 中找不到 main 方法, 请将 main 方法定义为: public static void main(String[] args) 否则 JavaFX
问题在类 VarTest03 中找不到 main 方法, 请将 main 方法定义为: public static void main(String[] args) 否则 JavaFX 应用程序类必须扩展javafx.application.Application发现问题在Editplus中发现main拼写不正确,然后修改保存后再进行编译,仍然出现这个问题。解决修改保存代码之后,需要重新生成class文件。重新生成之后就好了。 ...原创 2022-03-19 16:18:47 · 364 阅读 · 0 评论 -
【JAVA】编译时错误:A JNI error has occurred, please check your installation and try again
1. 问题:在DOS命令窗口编译时出现错误:A JNI error has occurred, please check your installation and try again2. 解决:搜到了几个方法,且已经尝试,都不行。比如:(有可能是我没操作对)我的 javac与java指令显示出的版本一致。在path变量上操作后还不行。我电脑还有了两个JDK ,卸载了一个后还不行。我就想到了我的HelloWorld.class文件不是自主生成的,是我自己加的(看课不能走神啊)。我的问题是"原创 2022-03-18 20:45:30 · 1407 阅读 · 0 评论 -
JAVA-定义两个重载的方法,分别求圆和长方形的面积。
定义两个重载的方法,分别求圆和长方形的面积。1、定义两个求面积的重载方法,圆周率可以用Math.PI表示2、在主方法中调用方法并将结果输出。注意:当圆的半径为4.5,长方形长和宽分别为8和5时,可得到如效果图所示的结果代码:`package com.homework1105;public class AreaDemo {//求圆形面积public void roundS(double r1){double s0;s0=r1r1Math.PI;System.out.prin原创 2020-11-05 22:56:13 · 10194 阅读 · 0 评论