gpt4 book ai didi

c# - ? x : y, 是什么意思呢?

转载 作者:行者123 更新时间:2023-11-30 13:07:38 26 4
gpt4 key购买 nike

List<int> list = new List<int> { 2, 5, 7, 10 };
int number = 9;

int closest = list.Aggregate((x,y) =>
Math.Abs(x-number) < Math.Abs(y-number) ? x : y);

? x : y,这是什么意思?

最佳答案

相当于

if Math.Abs(x-number) < Math.Abs(y-number) then use x else use y

有关更多详细信息和示例,请参阅 MSDN 文档 ( old version/new version)

关于c# - ? x : y, 是什么意思呢?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5955166/

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