zoukankan      html  css  js  c++  java
  • warning:deprecated conversion from string constant to 'char *'

    这样写会有warning,因为后面的程序有潜在的风险去修改str

    char* str="Hello";

    好的习惯应该是写成这个样子:

    const char* str="Hello";

  • 相关阅读:
    11.29
    11.28
    11.24
    11.21
    11.17
    11.15
    11.14
    11.9
    11.5
    11.3
  • 原文地址:https://www.cnblogs.com/oyjj/p/2132881.html
Copyright © 2011-2022 走看看