错误:在 ParseQuery.or() 中找不到符号类“或”;
Posted
技术标签:
【中文标题】错误:在 ParseQuery.or() 中找不到符号类“或”;【英文标题】:error: cannot find symbol class 'or' in ParseQuery.or(); 【发布时间】:2019-12-28 16:19:59 【问题描述】:我正在尝试使用“或”方法添加查询。
ParseQuery<ParseObject> myquery = new ParseQuery.or(allqueries);
但是当我写下这行 .or 时,我会变成红色并显示“找不到符号或”。
尽管其他解析函数工作正常。
`
dependencies
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation "com.github.parse-community.Parse-SDK-Android:parse:1.22.1"
implementation 'com.github.GrenderG:Toasty:1.4.2'
implementation 'com.google.android.material:material:1.0.0'
`
enter image description here
【问题讨论】:
试试ParseQuery myquery = ParseQuery.or(allqueries);
可能是它的静态方法
【参考方案1】:
您正在访问静态方法,因此请删除 new
关键字
将行替换为
ParseQuery myquery = ParseQuery.or(allqueries);
【讨论】:
以上是关于错误:在 ParseQuery.or() 中找不到符号类“或”;的主要内容,如果未能解决你的问题,请参考以下文章