美文网首页
一个非常操蛋的问题

一个非常操蛋的问题

作者: 亼亼 | 来源:发表于2016-06-06 21:46 被阅读25次

我一直想的是利用C++string类封装的函数的便捷性和linux下的C/API结合来
实现某些方法。可是有个问题出现了,每次碰见string和char*之间的转换的时候极为的尴尬。

  #include <iostream>
  #include <stdio.h>
  #include <unistd.h>
  #include <iostream>
  #include <string>
  #include <sys/types.h>          /* See NOTES */
  #include <sys/socket.h>
  #include <arpa/inet.h>
  #include <sys/stat.h>
  #include <fcntl.h>
  using namespace std;


int main(int argc, char const *argv[])
{
 int fd = open("./ok",O_RDWR);

// char buf[1024];
string buf = new char[1023];
read(fd,const_cast<char*>(buf.c_str()),1024);
cout << buf << endl;
// string buf2 = (string)buf;
cout << buf.find_first_of(" ",0);
cout << "*********" << endl;

return 0;
}

read的第二个参数原本是void,一般使用的时候是用char来做的,把独到的信息存储在buf里面,为了以后方便,我希望在这里直接用一个string来存储信息。
我清楚string和char*并不是兼容的,所以我通过const_cast来转换。
可是尴尬的是并没有读到什么信息。
这是为什么呢?

相关文章

网友评论

      本文标题:一个非常操蛋的问题

      本文链接:https://www.haomeiwen.com/subject/gklddttx.html