本文介绍了stdio.h不是C ++中的标准?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道大多数编译器允许两者:
#include< stdio.h>
//和
#include< cstdio>
但有人认为< stdio.h>
解决方案
stdio.h
是标准,但已弃用。
I know most compilers allow both:
#include <stdio.h>
//and
#include <cstdio>
But someone argued that <stdio.h> is not actually C++ standard.
is that true?
解决方案
stdio.h
is standard, but deprecated. Always prefer cstdio
in C++.
这篇关于stdio.h不是C ++中的标准?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!