嗨,我在这里使用 talend 和 java。卡在一个情况。
String modCode <br>
for (productsline product: ProdUtil.getProdForProfile(attrs.dhdeProd.profileId))
{
modCode = product.productCode;
System.out.println("products are:" +modCode);
}
这段代码打印了 3 个 didd modcodes。这是预期的。现在我需要在 if 组件中使用这些 modcode。M 无法按照它所说的那样做局部变量 modcode 可能尚未在 if 组件中初始化。我该怎么做??