gpt4 book ai didi

c++ - 在 "assert"(C++) 中使用 switch 语句

转载 作者:行者123 更新时间:2023-11-28 02:59:30 27 4
gpt4 key购买 nike

我想这比实际情况更像是假设,但我想知道是否可以使用在“assert”中返回“true”或“false”的 switch 语句。我意识到有更好的方法可以做到这一点,但我想从错误处理的角度来看这个问题,而不是清理用户输入。

例如,考虑一个接受输入设置日期的 Date 类。在该类的 SetDate() 成员函数中,我想放置一个“断言”来处理由输入引起的错误,例如“13”代表月份,或 30 天代表“2”月(二月)。编写执行此操作的 switch 语句将是微不足道的:

switch(nMonth){
case 1:
case 3:(etc)
if(nDay>=1 && nDay <=31)
return true;
else
return false;
(etc)
default:
return false;
}

假设 switch 语句按预期工作,我需要做什么才能使其在“断言”错误处理方案中工作?我按原样尝试了它,但(不足为奇)它没有编译。

编辑:@于浩:我就是这样修好的。我使用了 bool 函数。

bool TestDate(int nMonth, int nDay, int nYear){
switch(nMonth){
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
if(nDay >=1 && nDay <=31)
return true;
break;
case 4:
case 6:
case 9:
case 11:
if(nDay >=1 && nDay <=30)
return true;
break;
case 2:
if((nYear % 400 == 0) || ((nYear % 100 !=0) &&(nYear % 4 == 0))){
if(nDay >=1 && nDay <=29)
return true;}
else if(nDay >=1 && nDay <=28)
return true;
else
return false;
break;
default:
return false;

}
return 0;
}
Date(int nMonth = 1, int nDay = 1, int nYear = 1970){
assert(TestDate(nMonth,nDay,nYear));
m_nMonth = nMonth;
m_nDay = nDay;
m_nYear = nYear;
}

最佳答案

switch 语句没有返回值,return falseswitch 语句中的此类语句适用于函数 它们在里面。所以你不能在 assert 中使用 switch,但是你可以把这个 function switch 语句在 assert 中。

关于c++ - 在 "assert"(C++) 中使用 switch 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21200123/

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