• C++中cout输出字符型指针地址值的方法


    先给出通过字符型指针输出字符串的示例代码,如下:

    #include <iostream>
    using std::cout;
    using std::endl;
    
    int main()
    {
        const char *pszStr = "this is a string";
    
        // 输出字符串
        cout << "字符串:" << pszStr << endl;
    
        // 显然不会输出地址值
        cout << "字符串起始地址值: " << pszStr << endl;
    
        return 0;
    }
    

    对于要使用cout输出字符串指针地址值,我们可能会产生困惑。曾经我们使用C标准库中的printf函数是如此的方便:

    #include <stdio.h>
    
    int main()
    {
        const char *pszStr = "this is a string";
    
        // 输出字符串
        printf("字符串:%s\n", pszStr);
    
        // 输出地址值
        printf("字符串起始地址值:%p\n", pszStr);
        return 0;
    }
    

    兄弟,醒醒吧,咱们要写的是C++代码,不要总是抓着C不放嘛。好了,我们来分析一下,由于C++标准库中I/O类对<<操作符重载,因此在遇到字符型指针时会将其当作字符串名来处理,输出指针所指的字符串。既然这样,那么我们就别让它知道那是字符型指针,所以得用到强制类型转换,不过不是C的那套,我们得用static_cast来实现,把字符串指针转换成无类型指针,这样更规范,如下:

    #include <iostream>
    using std::cout;
    using std::endl;
    
    int main()
    {
        const char *pszStr = "this is a string";
        
        // 输出字符串
        cout << "字符串:" << pszStr << endl;
    	           
        // 如我们所愿,输出地址值
        cout << "字符串起始地址值: " << static_cast<const void *>(pszStr) << endl;
    
        return 0;
    }
    
  • 相关阅读:
    Smali基本语法
    图片智能缩小
    How to install ia32-libs in Ubuntu 14.04 LTS (Trusty Tahr)
    [操作系统][Ubuntu 14.04] 安装Flash 安装QQ2013
    eclipse在Ubuntu 13.04下的安装过程及问题小记
    Android系统手机端抓包方法
    Android 开源框架ActionBarSherlock 和 ViewPager 仿网易新闻客户端
    试用Android Annotations
    Android Annotations 介绍
    盘点国内Android移动广告平台的现状
  • 原文地址:https://www.cnblogs.com/wxxweb/p/2052256.html
Copyright © 2020-2023  润新知