提问人:jke 提问时间:11/18/2023 最后编辑:jke 更新时间:11/19/2023 访问量:77
我想在命令提示符下处理此代码。我该怎么做 [已关闭]
I Want to cout this code in command prompt.I what to do [closed]
问:
我想在命令提示符下处理此代码。一、怎么办
这是 Microsoft 文档代码
我想打印这个
#include<iostream>
#include <memory>
class widget
{
private:
std::unique_ptr<int[]> data;
public:
widget(const int size) { data = std::make_unique<int[]>(size); }
void do_something() {}
};
void functionUsingWidget() {
widget w(1000000); //I Want to print this value or Address to main()
w.do_something();
}
int main(){
//here how print this-> widget w(100000)
}
答: 暂无答案
评论
std::cout << "this";
?或者您正在寻找一个可以自行打印的程序,又名“quine”?你需要更清楚地说明你的目标。operator<<
widget