gpt4 book ai didi

java - 构造函数未定义错误 - Java

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

我正在尝试调用不同文件中存在的另一个类的方法。

主文件:

public class Test extends AndroidTestCase {
mTestUtils = new TestUtils(this, TAG, OUTPUT_FILE);

第二个文件:

public class TestUtils {
public TestUtils(Context context, String tag, String outputFile) {

mContext = context;
mTag = tag;
mOutputFile = outputFile;
}
}

它抛出构造函数未定义错误。任何帮助将不胜感激。

最佳答案

你在做什么

TestUtils(this, TAG, OUTPUT_FILE);

但在这种情况下,this 不是上下文。

方法getContext()将为您提供这一点,只需查看 doc

关于java - 构造函数未定义错误 - Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45373344/

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