gpt4 book ai didi

java - 无法解析符号

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:22:54 25 4
gpt4 key购买 nike

Android Java 项目,重现问题的最少代码:

常量.java:

package alex.restaurantfinder;

public class Constants {
public static final String LOGTAG = "...";
}

ReviewCriteria.java:

package alex.restaurantfinder;
import android.app.Activity;

public class ReviewCriteria extends Activity {
static String s = Constants.LOGTAG; // error
}

错误信息:

Constants.LOGTAG cannot be resolved.

我的错误在哪里?

编辑。问题是,当我在 Eclipse 中按下 Ctrl+Shft+O 时,它添加了这一行:

import android.provider.SyncStateContract.Constants;

它阻止编译器使用我自己的常量类。

最佳答案

我认为可能还有另一个名为 Constants 的类是自动导入的。

您可以尝试使用完全限定名称 alex.restaurantfinder.Constants.LOGTAG 吗?

关于java - 无法解析符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8150169/

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