zoukankan      html  css  js  c++  java
  • c++学习笔记:void*变量,在函数内必须要明确变量类型

    void CreadmifDoc::SwapWord(int length,void* wordP){
     int  i;
        TCHAR temp;

        for( i=0; i < length/2; i++ )
        {
     // temp = ((TCHAR *) wordP)[i];
     // ((TCHAR *)wordP)[i] = ((TCHAR *) wordP)[length-i-1];
     // ((TCHAR *) wordP)[length-i-1] = temp;
      temp =wordP[i];
      wordP[i] = wordP[length - i - 1];
      wordP[length - i - 1] = temp;
        }
    }

    对于以上函数,运行提示错误,把注释去掉即可

  • 相关阅读:
    20210524
    20210521
    20210520
    20210519
    20210518
    20210517
    字符设备驱动三
    字符设备驱动二
    字符设备驱动一
    git基本操作
  • 原文地址:https://www.cnblogs.com/8586/p/1249450.html
Copyright © 2011-2022 走看看