Alternatives to MS strncpy_s

前端 未结 10 1547
感情败类
感情败类 2020-12-20 20:15

What are some alternatives to the Microsoft security enhanced functions such as strncpy_s or _itoa_s? Although developing in MS environment the goa

10条回答
  •  醉话见心
    2020-12-20 21:05

    If you really want to program in C:

    Use the plain old standard strncpy.

    If you're programming in C++:

    Use the plain old standard string class std::string.

    (hint: You probably want the latter. C strings are just bugs waiting to happen, even if you use the "secure" *_s functions. C++ added a string class for a reason)

提交回复
热议问题