Heim  >  Fragen und Antworten  >  Hauptteil

Ich verstehe einen Satz in C++ nicht.

std::string data = "username=15111651349&password=qq1990086708&client=wap";

const void *ss = (const char *)data.c_str();

bResults = WinHttpSendRequest(hRequest, 0, 0, const_cast<void *>(ss), data.length(),
data.length(), 0);

const_cast<void *>(ss)Ich verstehe diesen Satz nicht

阿神阿神2698 Tage vor892

Antworte allen(2)Ich werde antworten

  • 过去多啦不再A梦

    过去多啦不再A梦2017-06-22 11:55:34

    :const_cast<type_id> (expression)
    该运算符用来修改类型的const或volatile属性。除了const 或volatile修饰之外, type_id和expression的类型是一样的。
    一、常量指针被转化成非常量的指针,并且仍然指向原来的对象;
    二、常量引用被转换成非常量的引用,并且仍然指向原来的对象;
    三、const_cast一般用于修改底指针。如const char *p形式。

    Antwort
    0
  • 天蓬老师

    天蓬老师2017-06-22 11:55:34

    这执行了一个你若不知道自己在干什么就会很危险的操作,这个关键字可以移除变量的const限定符

    Antwort
    0
  • StornierenAntwort