Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
198 views
in Technique[技术] by (71.8m points)

c++ - same address shows different values for const variable with g++ compiler

The following code shows different output with gcc and g++ on using const variable i. The addresses of i and value of ptr is same, but on accessing that address by printing value of i and derefrencing value of ptr I got value of i as 5 with g++ and 10 with gcc.

How g++ holds const variable in memory?

   #include <stdio.h>
   int main()
   {
     const  int i =5; 
     int *ptr =(int*)&i;
     *ptr = 10;
     printf("
 %u and %u   and %d  and %d  
",&i,ptr,i,*ptr);

     return 0;
   }
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You are modifying a const qualified object. This is not allowed in C ("undefined behavior"). Anything can happen.

Examples:

  1. The compiler could put i into read-only memory. Writing to *ptr would crash your program.
  2. It could put it into writable memory and you would just see the 10.
  3. It could put it into writable memory but replace all read accesses to i by the number 5 (You promised it is const, didn't you?).

I guess the C compiler chose 2 while the C++ compiler went for 3.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...