我试图从存在于不同文件中的另一个类中调用方法。
主文件:
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