gpt4 book ai didi

java - 在这种情况下这个 & 符号的目的是什么?

转载 作者:行者123 更新时间:2023-12-01 17:56:30 25 4
gpt4 key购买 nike

public class WeatherAggregator {
private List<WeatherSource> weatherSources;

public WeatherAggregator(List<WeatherSource> weatherSources) {
this.weatherSources = weatherSources;
}

public double getTemperature() {
return weatherSources
.stream()
.mapToDouble(WeatherSource::getTemperatureCelcius)
.average()
.getAsDouble();
}
}

我搜索了这里的 & 符号是什么意思,但我找不到它的任何含义?!你能说出这一行发生了什么吗?

private List<WeatherSource>weatherSources;

最佳答案

这只是 < 的 HTML 源编码和> 。以下内容:

List&lt;WeatherSource&gt;

实际上是

List<WeatherSource>

请参阅此处的 HTML escape characters

关于java - 在这种情况下这个 & 符号的目的是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44351986/

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