码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2015-02-09 09:26:45      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:c++

#include<iostream>
#include<string>
using namespace std;
int main(){


char c[3]={‘a‘,‘b‘,‘c‘};
char *p=c;
cout<<*p<<‘ ‘<<(void*)p<<endl;
cout<<*(p+1)<<‘ ‘<<static_cast<void*>(p+1)<<endl;
cout<<*(p+2)<<‘ ‘<<static_cast<void*>(p+2)<<endl;

system("pause");
return 0;
}




若要打印地址请用void*,否则 p会被认为是字符串。原因:运算符重载的匹配规则

C/C++ code
?
1
2
3
4
5
6
7
8
9
 #include<iostream>
 using namespace std;
  
int main()
 {
     char a;
     char *p=&a;
     cout<<(void*)p<<endl<<a<<endl;
 



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

#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;
}


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

标签:c++

原文地址:http://blog.csdn.net/u013467442/article/details/43666955

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!