gpt4 book ai didi

java - 对于参数类型 int、String,运算符 < 未定义

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

编译时出现错误:

Exception in thread "main" java.lang.Error: Unresolved compilation problem: The operator < is undefined for the argument type(s) int, String

错误出现在for循环中。

package automationFramework;

import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.Select;

public class DropDownMd {
private static WebDriver driver = null;

public static void main(String[] args) {

driver = new FirefoxDriver();

driver.get("http://www.irctc.com/menu.html ");
driver.findElement(By.linkText("Feedback")).click();
WebElement Servcsdrop = driver.findElement(By.id("NU_SERVICE_ID"));

Select Val = new Select(Servcsdrop);
List<WebElement> Res = Val.getOptions();

boolean f = false;

for (int i = 0; i < Res.get(i).getText(); i++)
// error is here

if (Val.equals("TOURISM")) {
f = true;
}
if (f) {
System.out.println("tourism is present");
} else {
System.out.println("Tourism is not present");
}
}
}

最佳答案

在您的 for 中循环,终止条件是 i < Res.get(i).getText() 。问题是这里的第二个参数是 String 。你需要一个号码在那里。 (5 是大于还是小于“banana”?这个问题没有任何意义。)

但我不确定是什么数字,因为我不清楚你的for是什么循环正在尝试实现...更好的格式会有所帮助(并且可能对您也有帮助)...

关于java - 对于参数类型 int、String,运算符 < 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25590540/

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