In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/03 Report--
A pointer to a constant: the value of the pointer cannot be changed, and the pointer is not a constant, so the pointer can be modified.
Int main (void) {int value = 10; / * define a pointer to a constant * / const int * pValue = & value; / / pValue = & value; / * * the compiler will report an error and * pValue is read-only. * that is, the value pointed to by the pointer cannot be changed * / / * * the assignment compiler will report an error assignment of read-only location'* pValue' * because the value pointed to by * pValue is constant, so it cannot be changed. * / * pValue = 20; / * but you can change the value of value * / int number = 30; / * the pointer is not constant, so you can change the pointer to * / pValue = & number; return 0;}
Constant pointer
# include
/ * *
Constant pointer
The address stored in the pointer cannot be changed
/
Int main (void)
{
Int value = 10
Int const pValue = & value
Int item = 34
/ * *
Compiler error, assignment of read-only variable 'pValue'. Indicates that the address stored in the pointer cannot be modified
/
PValue = & item
/ but you can modify the value pointed to by the address /
PValue = 24
Return 0
}
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.