目录
摘要
记得之前看过一篇文章说所有的指针其实都可以视为一个int类型,这句话催生了我很多想法,这篇博文即为其一。
示例
- 示例代码:
#include<iostream>
using namespace std;
int main()
{
const char str[] = "123456";
cout << str << endl;
char* p = (char*)(int(str));
*p = 48; //0的ASCII
cout << str << endl;
return 0;
}
- 编译可以通过,运行也正常;运行结果:
- 分析
- 可以看到原本定义为const char的str[]的第一个字符"1"被程序在运行时修改为“0”。
- 显然重点在于 char* p = (char*)(int(str));
- 在代码中声明为const限制的变量,其实在内存层面和没有const的是一样的。
- 区别在于如果声明为const,则编译器会在编译时检查是否有对这个变量进行修改,但它不保证运行时不会被修改,因此可以用间接的方法去修改它。
- 指针存放的地址可以看做是一个int类型的值,因此显式把const char*转为int,再转为char*即可,接着我们就可以用char* p来修改身为const char的str了。
- 这不仅对于const char的数据,对于其他声明为const的数据都可以用这个方法去修改。
- 特例:
- 有些const变量(如const int)由于编译器会优化,采用宏定义直接替代,然后运行时也是可以执行修改,虽然不会报错,但修改是没有效果的,这个时候如果真要修改,得修改程序运行时代码区。
不可修改的特例
- 如果我们把str的声明由 const char[] 改为 const char * 呢?
- str声明为 const char[] 时:
- str是一个数组,数组大小取决于初始化的内容的长度,即后面"123456"的长度,除了6个数字外,还有末尾1个 "\0" 的结束符,因此是7个长度;即str的类型是const char[7]。
- 由于是在main函数内声明的,因此存放是在栈上的。
- str声明为 const char*时:
- str是一个指向const char的指针。
#include<iostream>
using namespace std;
int main()
{
const char* str = "123456";
cout << str << endl;
char* p = (char*)(int(str));
*p = 48; //0的ASCII
cout << str << endl;
return 0;
}
- 此时编译可以通过,但运行时报错;运行结果:
- 此时在用p修改str时出现写入失败,那同为const char的str,为什么这里就不能修改呢?
- 因为这里是把str声明为一个指向const char的指针,字符串“123456”是位于静态常量区的一块内存,静态常量区是程序运行时也不可修改的,而str就指向了这块内存,因此修改就报错了。
- 但上面的例子不一样,声明为const char str[]时,是给str分配了一块内存,然后把字符串"123456“写到这块内存中,由于这是在栈上的,是可以修改的,因此虽然声明是const char,但只是编译时会检查你有没有去修改它,有则不会编译通过。显然我们显示转换类型成功绕过了编译器的检查。
写在最后
* c++本身也提供了一些方法可以去掉str的const限制:比如const_cast<>,它的使用方法在百度上很多,如果需要请自行百度了解。
* 指针着实是相当有意思的东西。
Если вы искали где отремонтировать сломаную технику, обратите внимание – ремонт бытовой техники
Если вы искали где отремонтировать сломаную технику, обратите внимание – ремонт техники в барнауле
ремонт телевизоров в москве ремонт тв
Профессиональный сервисный центр по ремонту источников бесперебойного питания.
Мы предлагаем: ремонт ибп в москве
Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!
ремонт мобильных телефонов
Если вы искали где отремонтировать сломаную технику, обратите внимание – ремонт бытовой техники в новосибирск
Hi there, I do think your web site may be having web browser compatibility issues. Whenever I take a look at your site in Safari, it looks fine however, if opening in IE, it’s got some overlapping issues. I simply wanted to provide you with a quick heads up! Other than that, excellent blog!
This is the right site for everyone who would like to find out about this topic. You understand a whole lot its almost hard to argue with you (not that I personally would want to…HaHa). You certainly put a brand new spin on a topic that has been written about for ages. Wonderful stuff, just excellent.
I used to be able to find good advice from your content.
I’m amazed, I have to admit. Rarely do I encounter a blog that’s both equally educative and entertaining, and without a doubt, you’ve hit the nail on the head. The problem is something not enough folks are speaking intelligently about. I am very happy that I came across this during my search for something relating to this.
Howdy! I could have sworn I’ve visited this blog before but after browsing through some of the articles I realized it’s new to me. Anyways, I’m certainly happy I came across it and I’ll be bookmarking it and checking back regularly!
Very good article! We will be linking to this great article on our site. Keep up the good writing.
It’s difficult to find knowledgeable people about this topic, but you sound like you know what you’re talking about! Thanks
Hello there, I think your site could possibly be having internet browser compatibility issues. When I look at your website in Safari, it looks fine but when opening in IE, it’s got some overlapping issues. I merely wanted to provide you with a quick heads up! Apart from that, great site!
Everything is very open with a precise clarification of the challenges. It was definitely informative. Your site is useful. Thank you for sharing.
Good web site you have here.. It’s hard to find high quality writing like yours these days. I really appreciate individuals like you! Take care!!
Great blog you have here.. It’s hard to find excellent writing like yours these days. I honestly appreciate individuals like you! Take care!!
I quite like reading an article that can make men and women think. Also, thank you for allowing me to comment.
Very good information. Lucky me I discovered your site by chance (stumbleupon). I have saved it for later.
You are so interesting! I don’t believe I have read a single thing like this before. So nice to discover another person with original thoughts on this topic. Seriously.. thanks for starting this up. This site is something that’s needed on the internet, someone with some originality.
Picking The Importance Golf Clubs 대전마사지 (eaircompressorpart.org)
Way cool! Some very valid points! I appreciate you penning this post and the rest of the website is also very good.
It’s hard to find experienced people in this particular topic, but you sound like you know what you’re talking about! Thanks
I used to be able to find good advice from your content.
Если вы искали где отремонтировать сломаную технику, обратите внимание – ремонт бытовой техники в москве
Howdy! This post couldn’t be written much better! Looking at this post reminds me of my previous roommate! He continually kept preaching about this. I will send this information to him. Pretty sure he’s going to have a very good read. I appreciate you for sharing!
The very next time I read a blog, I hope that it won’t disappoint me just as much as this one. I mean, I know it was my choice to read through, but I actually thought you would probably have something interesting to talk about. All I hear is a bunch of complaining about something you could possibly fix if you weren’t too busy searching for attention.
This website was… how do I say it? Relevant!! Finally I have found something which helped me. Many thanks.
Если вы искали где отремонтировать сломаную технику, обратите внимание – профи услуги
Pick Up Women In Bars – 5 Sizzling Tips To Gain Beautiful Women 대구밤문화 (http://indiopianocompetition.com/__media__/js/netsoltrademark.php?d=estrada-hackett-2.federatedjournals.com/how-to-obtain-silver-bullion-not-every-that-glitters-is-gold/)
Профессиональный сервисный центр по ремонту бытовой техники с выездом на дом.
Мы предлагаем:ремонт крупногабаритной техники в петрбурге
Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!
Профессиональный сервисный центр по ремонту ноутбуков и компьютеров.дронов.
Мы предлагаем:сервисный ремонт ноутбуков москва
Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!
Профессиональный сервисный центр по ремонту радиоуправляемых устройства – квадрокоптеры, дроны, беспилостники в том числе Apple iPad.
Мы предлагаем: ремонт квадрокоптеров в москве на карте
Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!
Если вы искали где отремонтировать сломаную технику, обратите внимание – ремонт цифровой техники спб
Warm Muscle Tissues With A Hot Stone Massage 인천밤문화
In federal government, the contract language is determined by the government.
What Is The Reason Smart Key Locksmith Near Me Is The Right Choice For You?
Smart Key For Car Near Me
Pretty! This was an incredibly wonderful post. Many thanks for supplying these details.
It’s difficult to find educated people about this topic, however, you sound like you know what you’re talking about! Thanks
In 1954, the barrios of Mayorga, Andres Bonifacio, Talisay, San Roque, Burgos, Liberty, Union, Ormocay, Wilson, and the southern portion of barrio of Cogon Bingcay was separated to kind the city of Mayorga, Leyte.
Профессиональный сервисный центр по ремонту планетов в том числе Apple iPad.
Мы предлагаем: ремонт ipad
Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!
Though at the beginning it was solely available in some cities: Boston, Chicago, Los Angeles, Minneapolis, Newark Metro Space, New York Metro Area, Philadelphia, San Francisco, Seattle, Vancouver BC, and Washington DC, now yow will discover info from all over the world.
Among the options available, cryptocurrencies have greater acceptance because they are fully decentralized, by what the profits will be net and proportional to the investment of the individual.
Best Sports Bar For Night By Helping Cover Their The Guys 달서구오피
Everything is very open with a clear explanation of the issues. It was really informative. Your website is very useful. Thank you for sharing.
Is Your Company Responsible For An Saab Key Programming Near Me Budget?
12 Best Ways To Spend Your Money car key cutting And programming specialist