⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 constpointer.cpp

📁 Think in C++ 第二版源码
💻 CPP
字号:
//: C08:ConstPointer.cpp

// From Thinking in C++, 2nd Edition

// Available at http://www.BruceEckel.com

// (c) Bruce Eckel 1999

// Copyright notice in Copyright.txt

// Constant pointer arg/return



void t(int*) {}



void u(const int* cip) {

//!  *cip = 2; // Illegal -- modifies value

  int i = *cip; // OK -- copies value

//!  int* ip2 = cip; // Illegal: non-const

}



const char* v() {

  // Returns address of static character array:

  return "result of function v()";

}



const int* const w() {

  static int i;

  return &i;

}



int main() {

  int x = 0;

  int* ip = &x;

  const int* cip = &x;

  t(ip);  // OK

//!  t(cip); // Not OK

  u(ip);  // OK

  u(cip); // Also OK

//!  char* cp = v(); // Not OK

  const char* ccp = v(); // OK

//!  int* ip2 = w(); // Not OK

  const int* const ccip = w(); // OK

  const int* cip2 = w(); // OK

//!  *w() = 1; // Not OK

} ///:~

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -