avatar
C++11痛并快乐着# Programming - 葵花宝典
f*y
1
Just found the PRIORITY DATE on my I485 notice is empty!
But it is on I140 Approval Notice: May 10, 2007
Does this matter?
avatar
D*r
2
片子好在主题很正,事业、爱情、自尊。而且很新颖,用默片达到讲故事感人的效果,
摄影和镜头脚本非常出彩。
关键在把握社会脉搏,迎着大萧条以来最大的萧条,讲述大萧条背景下的故事,大卖所
谓积极正面的精神安慰。
但是剧情的确比较弱,实在是太灰姑娘了,连《飘》的思想境界都达不到。不过老套大
众口味的剧情,能够保证票房。
这个片子说是又叫好又叫座没有争议吧,奖拿了,15million的投资,现在票房
38million了
我在的厅能听到淳朴的美国人民看哭了。
avatar
n*n
3
www.apple.com
打不开
avatar
b*i
4
最近用asio, 好不容易把boost一个tcp server的例子改成了不用boost,只用C++11。
其中的改动有
boost::bind -> std::bind, _1 -> std::placeholders::_1, boost::asio::xxx ->
asio::xxx,
boost::system::error_code -> asio::error_code, high_resolution_timer.
expires_at(std::chrono::high_resolution_clock::time_point::max());
主要问题是网上大部分的例子都是用boost,而编译器去年才全部支持C++11。改动的地
方也不知道对不对,只知道语法对了。
最后,生成一个例子程序来测试能不能把server停了,退出程序,这个退出的功能需要
用一个线程,3秒后呼叫io_service.stop(); 所以线程如下
void asyncStop(Server& server) {
using namespace std::literals;
std::this_thread::sleep_for(2s);
std::cout << "before" << std::endl;
server.quit();
std::cout << "after"<< std::endl;
}
然后main里面
Server s(io_service, listen_endpoint);
std::thread t1(&asyncStop, s);告诉我错误在tuple第75行。这哪找去,最后发现要
这样写
std::thread t1(&asyncStop, std::ref(s));
学了20年C++,现在终于成了初学者。用的编译器是VS2015。关于最后一个错误,它能
否告诉我错在我的std::thread t1(&asyncStop, s);?
avatar
o*e
5
通常是这样子的

【在 f*******y 的大作中提到】
: Just found the PRIORITY DATE on my I485 notice is empty!
: But it is on I140 Approval Notice: May 10, 2007
: Does this matter?

avatar
j*e
6
这破片跟表现电影发展史相关的sun boulevard, 包括同样灰姑娘情结的singing in the rain差
得不是一点半点
avatar
l*s
7
it seems that the ctor of std::thread is invoking copy ctor of the argument
and passing by values, and probably your Server object is a singleton and
not copy-able.
I suspect vs2015 has an option for verbose error messages, in gcc it is
going to be a tall stack of errors and you can trace back to your source
code.
avatar
y*g
8
I have a friend has his one like it. So he does not know his PD even his I-
140 was approved in 2007. As NIW.
avatar
c*u
9
网上这个讨论挺多的,主要是template 不知道怎么处理&, tuple需要输入为value。加
ref就是实为ref的value。

>

【在 b***i 的大作中提到】
: 最近用asio, 好不容易把boost一个tcp server的例子改成了不用boost,只用C++11。
: 其中的改动有
: boost::bind -> std::bind, _1 -> std::placeholders::_1, boost::asio::xxx ->
: asio::xxx,
: boost::system::error_code -> asio::error_code, high_resolution_timer.
: expires_at(std::chrono::high_resolution_clock::time_point::max());
: 主要问题是网上大部分的例子都是用boost,而编译器去年才全部支持C++11。改动的地
: 方也不知道对不对,只知道语法对了。
: 最后,生成一个例子程序来测试能不能把server停了,退出程序,这个退出的功能需要
: 用一个线程,3秒后呼叫io_service.stop(); 所以线程如下

avatar
a*x
10
这够傻缺的

【在 y****g 的大作中提到】
: I have a friend has his one like it. So he does not know his PD even his I-
: 140 was approved in 2007. As NIW.

avatar
n*s
11
Should be receipt date of his 140.

【在 y****g 的大作中提到】
: I have a friend has his one like it. So he does not know his PD even his I-
: 140 was approved in 2007. As NIW.

avatar
C*n
12
PD should be the date when you submit your labor certificate...

【在 n***s 的大作中提到】
: Should be receipt date of his 140.
avatar
r*a
13
PD 是在140 approval notice上吧 跟receipt date不是一天呀
你们把我说糊涂了
avatar
n*s
14
NIW

【在 C***n 的大作中提到】
: PD should be the date when you submit your labor certificate...
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。