zl程序教程

您现在的位置是:首页 >  其它

当前栏目

const指针 常指针

指针 const
2023-09-14 09:09:31 时间

(2)常指针

必须进行初始化,且const指针的值不能修改。

#include<iostream>
using namespace std;
int main(){
    const int num=100;
    const  int *ptr=&num; //error! const int* -> int*
    cout<<*ptr<<endl;
}