gpt4 book ai didi

java - 错误: class,接口(interface),或枚举预期导入

转载 作者:行者123 更新时间:2023-12-02 01:20:51 25 4
gpt4 key购买 nike

在下面的代码中,我抑制了警告,因为我将使用已弃用的assertEquals方法。我遇到的问题是,当我运行下面的代码时,出现错误:

MyTests.java:3: error: class, interface, or enum expected import org.junit.*;

@SuppressWarnings("deprecation")

import org.junit.*;
import static org.junit.Assert.*;


public class MyTests {


}

最佳答案

注释必须在类上

import org.junit.*;
import static org.junit.Assert.*;

@SuppressWarnings("deprecation")
public class MyTests {


}

但您应该避免使用已弃用的方法...

存在同名但签名不同的方法:assertEquals(双预期,双实际,双增量)

来源:https://stackoverflow.com/a/33274105/5950567

关于java - 错误: class,接口(interface),或枚举预期导入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57732645/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com