我不确定如何解释这一点,但我很肯定有办法做到这一点,但我还没有得到它。这是我的示例:我有 10 个变量(整数值),并使用变量的值设置一个字符串。
这是一个带有天气和云层的示例,用于确定天气状况:
if (hour1cloud <= 5) {
hour1weather = @"Clear";
}
if (5 < hour1cloud <= 25) {
hour1weather = @"Mostly Clear";
}
if (25 < hour1cloud <= 50) {
hour1weather = @"Partly Cloudy";
}
if (50 < hour1cloud <= 83) {
hour1weather = @"Mostly Cloudy";
}
if (83 < hour1cloud <= 105) {
hour1weather = @"Overcast";
}
假设我有 hour2cloud、hour3cloud、hour4cloud 等,它们对应于 hour2weather、hour3weather 等等。有没有一种方法可以制作一个通用的方法,我只需输入 hour1cloud 并检索 hour1weather?