zoukankan      html  css  js  c++  java
  • C++中的关键知识点(汇总)

    1. class的virtual 与non-virtual的区别

    (1)virtual 函数时动态绑定,而non-virtual是静态绑定,前者是多态效果。

    (2)多态类的析构函数应该为virtual函数。

    2. #define后面的""

      #define后面的""是续行符,表示下面一行是紧接着当前行的,一般用于将十分长的代码语句分几段写(语句本身要求必须是一行)。 这段代码就和下面的一样。
      但要注意后面除了换行回车不能有任何字符,空格也不行:

    #define EQN_TEST_BULK(EXPR, R1, R2, R3, R4, PASS) 
            { 
              double res[] = { R1, R2, R3, R4 }; 
              iStat += EqnTestBulk(_T(EXPR), res, (PASS)); 
            }

     3.  string类中的find_last_of()函数可以执行简单的模式匹配

      如在字符串中查找单个字符c,而且该函数是查找字符串的最后出现c的位置,如果无匹配就返回-1.这里的found=str.find_last_of("/\");就是在字符串str中查找最后出现斜杠“/”或反斜杠“”的位置,这一般在一个完整的路径中为了得到文件名等信息做准备。

     1 // string::find_last_of
     2 #include <iostream>       // std::cout
     3 #include <string>         // std::string
     4 #inlude <cstddef>         // std::size_t
     5 
     6 void SplitFilename (const std::string& str)
     7 {
     8   std::cout << "Splitting: " << str << '
    ';
     9   std::size_t found = str.find_last_of("/\");
    10   std::cout << " path: " << str.substr(0,found) << '
    ';
    11   std::cout << " file: " << str.substr(found+1) << '
    ';
    12 }
    13 
    14 int main ()
    15 {
    16   std::string str1 ("/usr/bin/man");
    17   std::string str2 ("c:\windows\winhelp.exe");
    18 
    19   SplitFilename (str1);
    20   SplitFilename (str2);
    21 
    22   return 0;
    23 }

      输出

    Splitting: /usr/bin/man
     path: /usr/bin
     file: man
    Splitting: c:windowswinhelp.exe
     path: c:windows
     file: winhelp.exe
  • 相关阅读:
    国外名校课程视频爆红 网友总结“必杀技”(图)
    设置mysql密码
    Writing Linux LCD drivers—深入分析framebuffer设备驱动的结构
    LAMP架构中,php 与 php、php与C语言程序等 之间 的网络通信 问题
    API & ABI
    Linux 6初体验:桌面性能堪比新版Ubuntu
    diff 比较两个文件夹
    11种错误的保养皮肤习惯
    服务器领域Linux击败Windows的5大理由
    CentOS5.5 FTP安装配置
  • 原文地址:https://www.cnblogs.com/icmzn/p/5119641.html
Copyright © 2011-2022 走看看