
C++學習
文章平均质量分 71
半路出家的技工
半路出家 向大家学习!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
strcpy' this function or variable may be unsafe. consider using strcpy_s instead
The function strcpy is considered unsafe due to the fact that there is no bounds checking and can lead to buffer overflow. Consequently, as it suggests in the error description, you can use strcpy_原创 2015-01-06 12:35:48 · 2247 阅读 · 0 评论 -
vector中的push_back()学习
std::vector::push_back Addelement at the end Addsa new element at the end of the vector, after its current last element. The content of val is copied (or moved) to the new element. Thiseffec原创 2015-01-05 23:49:19 · 1428 阅读 · 0 评论