gpt4 book ai didi

c# - 无法将类型 'int' 隐式转换为 'short'?

转载 作者:太空狗 更新时间:2023-10-30 00:42:50 24 4
gpt4 key购买 nike

<分区>

我有 3 个变量都声明为“Int16”类型,但这段代码无法运行。

    private Int16 _cap;                 // Seat Capacity
private Int16 _used; // Seats Filled
private Int16 _avail; // Seats Available

public Int16 SeatsTotal {
get {
return _cap;
}
set {
_cap = value;
_used = _cap - _avail;
}
}

除了我有 _used = _cap - _avail; 的部分抛出这个错误,Error

1 Cannot implicitly convert type 'int' to 'short'. An explicit conversion exists (are you missing a cast?)

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