码迷,mamicode.com
首页 > 其他好文 > 详细

常量指针不能作为右值赋值给非常量指针

时间:2018-08-16 13:57:44      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:class   rom   int   stream   ali   ace   自己   invalid   指针   

#include<iostream>
using namespace std;
int main(){
    int b[4]={1,2,3,4};
    const int* a = b;
    int * c = a;//error: invalid conversion from ‘const int*‘ to ‘int*‘ 
        return 0;
}

原因很简单,因为常量指针是指向常量的指针,const是一个限定符,你给自己加上这个限定,不代表你可以给别人加上这个限定,因此,如果别人不是指向const的指针,你就不能强迫别人也指向const。

常量指针不能作为右值赋值给非常量指针

标签:class   rom   int   stream   ali   ace   自己   invalid   指针   

原文地址:https://www.cnblogs.com/drunknbeard/p/9486125.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!