type
Post
status
Published
slug
2023/04/10/remove-the-last-line-use-c++
summary
tags
工具
思考
category
技术分享
icon
password
new update day
Property
Oct 22, 2023 01:31 PM
created days
Last edited time
Oct 22, 2023 01:31 PM
#include <csignal> #include <fstream> ofstream result_file(result_file_path); result_file.seekp(-1, ios::end); int size = result_file.tellp(); result_file.close(); FILE* file = fopen(result_file_path.c_str(), "ab+"); int a=fileno(file); ftruncate(a,size);
 
 
欢迎加入喵星计算机技术研究院,原创技术文章第一时间推送。
notion image
 
c++11 中为什么在实现 Thread 类时需要禁止默认拷贝?116. 填充每个节点的下一个右侧节点指针