作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
基于这个问题(前段时间问过)
inline-object-instantiation-and-transformation-in-java
有没有办法在不使用构造函数的情况下在单行 C++ 中实例化、对象化和初始化它的成员?
在 java 中,根据链接:
JFrame aFrame = new JFrame();
aFrame.add(new JPanel() {{
setSize(100,100);
setLocation(50,50);
setBackground(Color.red);
}});
这可以用 c++ 以任何方式完成吗?
编辑:例如
class Foo{
public:
int test;
int test2;
};
int main(){
Foo foo(){{test=5 test2=4}}; //Like this
}
最佳答案
如果类是聚合(没有基类、非公共(public)成员、虚函数或用户声明的构造函数),那么您可以使用聚合初始化来初始化其成员:
struct thing {
int a,b,c;
};
thing t = {1,2,3};
否则,它只能由构造函数初始化。
关于带有初始值设定项的 C++ 匿名类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21290901/
我想成为 Spark 纱客户(link)。是否需要安装hadoop?还是只安装 yarn 可以吗? (by this link) 最佳答案 No Spark不需要Hadoop即可运行。 Apache
我是一名优秀的程序员,十分优秀!