gpt4 book ai didi

java - Eclipse会忽略条件断点(java for hadoop)

转载 作者:行者123 更新时间:2023-12-02 20:29:51 24 4
gpt4 key购买 nike

这是我的Java代码:

public class MoviesReviewsMapper extends Mapper <LongWritable, Text, Text, Text>
{
public void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException
{

String [] tokens = value.toString().split("::");
context.write(new Text(tokens[2]), new Text(tokens[0]));
}
}

这是一个条件断点:

Conditional breakpoint

Eciplse / SDK的版本是v4.7.0。有什么问题?

最佳答案

像这样比较您的字符串:

"1".equals(tokens[2])

问题在于您正在比较变量引用,而不是对象本身。

关于java - Eclipse会忽略条件断点(java for hadoop),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53798844/

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