扩展名为 .cpp,v 的文件
我有一个 C++ 代码。但其扩展名为 .cpp,v。我想调试并编译代码。任何人都可以阐明这个主题吗?我想知道v代表什么? &如何调试代码?
I 've a c++ code. but its with .cpp,v extension. I want to debug and compile the code. Can anyone please throw some light on that topic. I want to know what v indicates? & how to debug the code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是来自 CVS 或一些相关版本控制系统的文件。以“,v”结尾的文件不是实际的源文件,而是 CVS 使用的内务文件。
您需要返回 CVS 存储库并获取 .cpp 和 .h 源文件。
It's a file from CVS or some related version control system. The files ending with ",v" are not the actual source files, rather these are housekeeping files used by CVS.
You will need to go back to the CVS repository and get the .cpp and .h source file(s).