C++中nullptr和NULL有什么区别? 例如:
ios::sync_with_stdio(false); cin.tie(NULL);cout.tie(NULL);
和:
ios::sync_with_stdio(false); cin.tie(nullptr);cout.tie(nullptr);
貌似差不多啊?