- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用下面的代码时遇到问题,它会产生错误,我相信这是因为显然“auto”无法根据条件处理多种类型的返回。是这种情况还是我的代码有其他问题?另外,如果我尝试做的事情无法通过这种方式实现,那么是否可以通过其他方式实现?
auto Game_Manager::getMember(string s)
{
if (s == "rows")return rows; // return unsigned
else if (s == "columns")return columns; // return unsigned
else if (s == "p1")return p1; //return string
else if (s == "p2")return p2; //return string
else cout << "\n\nERROR!!! Invalid argument for getMember()\n\n" << endl;
return 1;
}
最佳答案
这是感兴趣的规则(来自标准的第 7.1.6.4 节)
If a function with a declared return type that contains a placeholder type has multiple
return
statements, the return type is deduced for eachreturn
statement. If the type deduced is not the same in each deduction, the program is ill-formed.
因此,所有返回语句必须具有相同的类型。
关于c++ - "auto function()"可以在函数体内有几种类型的返回吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34215341/
因此,我的flutter应用程序运行正常,但是我想对其进行一些更改。 我要执行的第一个更改是创建一个水平滚动窗口小部件,该窗口小部件的图像可以单击以更改工作站。 但是要做到这一点,我首先需要将两个小部
如何在 Bootstrap 模态的主体内设置 div 样式?这是我的模型: text ') .okBtn('ok') .open();">Open Model 我的CSS: @M
我有一个简单的触发器,它在 SQL Fiddle 上运行,但它不允许我将 INSERT STATEMENT 移动到触发器的主体内。 my code on sqlFiddle我只是想移动这条线 INSE
我是一名优秀的程序员,十分优秀!