Visual Studio cpp - 将调试打印添加到每一行
所以,我想要一个带有代码中每一行行号的 printf 。
例如 :
while (i < receiveDataSize && ((char*)peer->receiveBuffer)[i] == ' ') { 我++; }
应该是:
printf("第 1 行"); while (i < 收到的数据大小 && ((char*)peer->receiveBuffer)[i] == ' ') { printf("第 2 行"); 我++; }
有什么可以自动添加这些带有行号的 printf 行吗?
谢谢
So, I would like to have a printf with line number for each line in my code.
For example :
while (i < receivedDataSize && ((char*)peer->receiveBuffer)[i] == ' ') { i++; }
should be :
printf("line 1"); while (i < receivedDataSize && ((char*)peer->receiveBuffer)[i] == ' ') { printf("line 2"); i++; }
Is there anything that can add these printf line with line number automatically ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论