- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这感觉非常像另一个问题的重复,但我一直无法找到解决方案。在 Eclipse(Java) 和 JGrasp 中,无论我做什么,IDE 都拒绝编译我拥有的类库。
我已经尝试使用构建路径配置在 Eclipse 中手动添加库,在工作区中创建一个文件夹,将类文件复制到其中,然后将该文件夹添加到类路径中。
在 JGrasp 中,我读到只需将类文件与运行程序文件放在同一目录中就足够了。
public class PayrollLoop
{
public static void main(String[] args)
{
// Prepare to receive output
Scanner scan = new Scanner(System.in);
// initialize variables
int numberEmployees = 0;
double totalGrossPay = 0;
double averagePay = 0;
Payroll employee = new Payroll();
String repeat = "yes";
// Loop to ask for repeated entry of employees.
// New String method: stringObject.equals(anotherStringObject).
// This method returns a boolean value of True or False.
while ( repeat.equals("yes") )
{
// prompt and scan for employee name
System.out.print("Enter the name: ");
employee.setName( scan.next() );
// prompt and scan for ID number
System.out.print("Enter the id number: ");
employee.setIdNumber( scan.nextInt() );
// prompt and scan for pay rate
System.out.print("Enter the pay rate: ");
employee.setPayRate( scan.nextDouble() );
// prompt and scan for hours worked
System.out.print("Enter the number of hours worked: ");
employee.setHoursWorked(scan.nextDouble());
// what should you do to the numberEmployees variable here?
numberEmployees ++;
// what should you do to the totalGrossPay variable here?
// use the getter methods to print all the employee values
System.out.println("Name " + employee.getName());
System.out.println("Id number " + employee.getIdNumber());
System.out.println("Pay Rate " + employee.getPayRate());
System.out.println("Hours Worked " + employee.getHoursWorked());
System.out.println("Gross Pay " + employee.grossPay());
System.out.println();
// Ask user if entering another and scan for response
System.out.println();
} // end of the while loop
// calculate average pay
averagePay = totalGrossPay / numberEmployees;
// print average pay
System.out.println("The average pay is: " + averagePay);
} // end of main method
}
jGASP 错误:
----jGRASP exec: javac -g PayrollLoop.java
---- at: Oct 8, 2019, 1:15:39 PM
----jGRASP wedge: pid for wedge is 2648.
----jGRASP wedge2: pid for wedge2 is 784.
----jGRASP wedge2: CLASSPATH is ";.;;;C:\Program Files (x86)\jGRASP\extensions\classes".
----jGRASP wedge2: working directory is [H:\APCS\2019-2020 AP Computer Science\Unit 2\payrolltest] platform id is 2.
----jGRASP wedge2: actual command sent ["C:\Program Files\jdk-10.0.2\bin\javac.exe" -g PayrollLoop.java].
----jGRASP wedge2: pid for process is 5304.
PayrollLoop.java:35: error: ';' expected
System.out.println("Enter the pay rate: ")
^
1 error
----jGRASP wedge2: exit code for process is 1.
----jGRASP: operation complete.
类文件已编译。
最佳答案
在jGRASP中,打开“设置”>“详细消息”,然后编译的输出也会显示类路径。您的类路径可能有些奇怪。
确保 Employee.class 命名正确(正确的大小写,没有隐藏的附加扩展名)。
如果 Employee 位于包中,则需要将该包结构复制为目录结构,因此,如果它位于包“company”中,则需要在包含“Main”(或其他位置)的目录中名为“company”的目录在类路径上),并且 Employee.class 将位于该目录中。
如果您确实有此库的 .jar 版本,则可以使用“设置”>“PATH/CLASSPATH”>“工作空间”(或“项目...”,如果您使用的是项目)将其添加到jGRASP 中的类路径。
关于Java 拒绝检测任何类库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58273184/
我只想允许一个国家/地区访问,但排除该国家/地区内的代理。 这就是我所拥有的(为了方便起见,缩短了版本) order deny,allow deny from all allow from 139.
这个问题在这里已经有了答案: What is an unhandled promise rejection? (9 个回答) 关闭 4 年前。 我目前正在尝试实现我自己的 Promise,以便在 A
我在使用 Gitolite 推送 git 时遇到问题。 当我尝试这个时: git push origin :refs/tags/deployment 我收到这个错误: remote: D NAME/i
我已经为我的 laravel 5.0-dev 项目配置了 mysql,如下所示: 'mysql' => [ 'driver' => 'mysql', 'host' =>
我对 Web 和 SOF 进行了一些研究,但发现对于该错误没有任何真正的帮助。 我使用 Windows 10 Ubuntu Bash 安装了 Node 和 Puppeteer,但未能使其工作,但我设法
在我的应用审核期间,我收到了以下信息: “17.2:要求用户共享个人信息(例如电子邮件地址和生日)才能正常运行的应用将被拒绝 具体来说,您的应用仅使用Facebook登录名进行身份验证,但不包括该网站
我正在开发 VeriFone VX 终端的接口(interface)。虽然,这确实是一个普遍的 EMV 问题。我们的处理器的下限为零,因此它将始终在线发送。但是,如果它发生变化,您如何知道(哪些标签)
我编写了一些宏代码,根据表单提交向经理发送电子邮件(用于费用/审批流程),这是我使用谷歌表单/电子表格的第一个项目,所以也许我可能会错过一些简单的东西,但我为此浏览了 2 个教程,我的代码与重要的部分
clang 3.4 接受以下代码;而 vc++ NOV 2013 CTP 拒绝它并出现错误: error C2668: 'AreEqual' : ambiguous call to overloade
使用 nginx,您可以允许和拒绝范围和 ips (https://www.nginx.com/resources/admin-guide/restricting-access/)。使用realip模
官方编辑: 非常感谢您的帮助,但我仍然遇到问题。 我的 ffserver.conf 文件是这样的: # Port on which the server is listening. You must
我有一个问题:我是 Ubuntu 系统的根。我想授予用户(比如用户名是 X)执行任何命令的权限,但同时我有一个文件夹,除了我的用户(当然不是 X,因为它是 Admin ) 或根。有什么建议么?谢谢!
我使用 Apache2.2 作为 tomcat 服务器的前端。我想限制对某个位置的访问,但允许对子位置的所有访问,但遇到了一些麻烦。 我目前拥有的是: AllowOverride None
就像 this person ,我一直在为浏览器缓存 SSL session 而苦苦挣扎。简而言之,如果选择了客户端证书,则无法以编程方式清除状态,除非在 IE 中使用 document.execCo
我的网站是在由 Apache 服务器提供服务的 Angular 上设置的。我通过 View 将内容动态加载到主页上。 现在以下是我的问题: 我建立这个网站的主要目的是通过 google adsense
我最近遇到了我的应用程序的问题,当它突然被 Google Play 拒绝时因为他们发现我使用的是背景位置 .但实际上我并没有使用这个功能。我只有 ACCESS_COARSE_LOCATION和 ACC
function sendPushNotification(subscription, urlEncodedData){ try { webpush.sendNotification(su
我包裹了一个 request-promise-native调用返回 promise 的函数。 import request from 'request-promise-native'; functio
我正在开发我的 meteor 项目,并开始设置我的第一个更复杂的允许/拒绝规则。我发现很难看出哪些允许触发,哪些不允许触发,以及这些函数中的某些变量包含什么。例如: List.allow({ u
我正在 AngularJS 中创建一个 Factory,它是这样的: if (href) { return $http({ method: method, url: item.href });
我是一名优秀的程序员,十分优秀!