void fun() const{}; const void fun(){}; 和void const fun(){}; 的区别?

 void fun() const{}; const void fun(){}; 和void const fun(){}; 的区别?
  const void fun(){};和void const fun(){};两个相同。
  如果采用"按址传递方式"的函数返回值加const 修饰,那么函数返回值(即地址)的内容不能被修改,该返回值只能被赋给加const 修饰的同类型指针。
  如果采用"按值传递方式"的函数返回值加const 修饰,由于函数会把返回值复制到外部临时的存储单元中,加const 修饰没有任何价值。
  所以不要尽量不要把int fun2();写成const int fun2(); 因为没意义。
  例:
[csharp] view plaincopy
#include<iostream>
using namespace std;
int num=10; //全局变量
const int *fun1(){ //按址传递
return &num; //返回地址
}
const int fun2(){ //按值传递 //最好直接写int fun2()
return num;
}
int main()
{
const int *fun1();  

// int *t1=fun1(); //错误,必须是const型
const int *t1=fun1();
// *t1=20; //按址传递,不能修改其指向变量或常量的值
cout<<"const int *fun1() :\t"<<*t1<<endl;
const int fun2(); //最好直接声明成int fun2()
int t2=fun2(); //非const变量可以更改函数返回值
const int t3=fun2();
t2 += 10; //按值传递,可以修改返回值
cout<<"const int fun2() :\t"<<t2<<endl;
return 0;
}
  void fun() const{};
  类的成员函数后面加 const,表明这个函数不可以对这个类对象的数据成员(准确地说是非static数据成员)作任何改变例:
[csharp] view plaincopy
#include<iostream>
using namespace std;
class R
{
public:
R():num1(1){}
int sum1(int a)const
{
// num1=10; //错误,不可以修改非static数据成员
return a+num1;
}
int sum2(int a)const
{
num2=2; //正确,修改static数据成员
return a+num2;  

}
int sum3(int a) //没有const
{
num1=10; //正确,修改非static数据成员
num2=20; //正确,修改static数据成员
return a+num1+num2;
}
private:
int num1;
static int num2;
};
int R::num2=0;
int main()
{
cout<<"t.sum1(1):\t"<<t.sum1(1)<<endl;
cout<<"t.sum2(1):\t"<<t.sum2(1)<<endl;
cout<<"t.sum3(1):\t"<<t.sum3(1)<<endl;
return 0;
}  

http://bbs.csdn.net/topics/350148926

http://bbs.csdn.net/topics/340217434

时间: 2024-11-05 21:49:07

void fun() const{}; const void fun(){}; 和void const fun(){}; 的区别?的相关文章

const char*、char*、char* const、char[]、string的区别

1.const char* p: p is a pointer to const char(char const* p 一样)   意思就是不能通过p指针来修改p指向的内容(但是内容可以修改).2.char* p      : p is a pointer to char   意思就是可通过p指针来修改p指向的内容3.char* const p: p is a const pointer to char   意思就是p指针是一个常指针,他指向的内存地址不能变,定义的时候就得初始化   一旦给指针

C++ Primer 学习笔记_25_类与数据抽象(11)--const 用法小结、static与const以及static const(const static)

一.const 用法总结 1.可以对const 的用法做个小总结: const int n = 100;  //定义常量 const Test t(10); const int & ref = n;   //const引用 int& ref = n;  //Error [const与指针] const int* p; //const出现在*前面,表示*p是常量 (*p = 200; //Error) int * const p2;  //const出现在*后面,表示p2是常量 (p2 =

iOS—— static和const联合使用;使用static const 与 #define

static和const联合使用:   static将一个全局变量变成局部变量   const将一个局部变量变成局部常量 // 定义了一个局部常量      static const CGFloat ZMJRed = 0.4; 使用static const 与 #define: 使用static const修饰变量和宏定义的比较        相同点            都不能再被修改            一处修改,其它都改了        不同点            static con

c++入门之——const在函数名前面和函数后面的区别

1 class Test(){ 2 public: 3 Test(){} 4 const int foo(int a); 5 const int foo(int a) const; 6 }; 一.概念 当const在函数名前面的时候修饰的是函数返回值,在函数名后面表示是常成员函数,该函数不能修改对象内的任何成员,只能发生读操作,不能发生写操作. 二.原理: 我们都知道在调用成员函数的时候编译器会将对象自身的地址作为隐藏参数传递给函数,在const成员函数中,既不能改变this所指向的对象,也不能

javascript 中 void 0的含义及undefine于void 0区别

undefined是一个全局属性,表示未定义或定义了没有赋值. void是一个一元运算符,不管传入什么参数都会返回undefined.  void操作符是在ECMAScript v1中定义的,而undefined是在ECMAScript v5中定义的. 我们知道undefined不是javascript的保留字,所以我们可以用undefined作为变量名.这时,我们定义的 undefined就会影响到使用undefined作为判断的地方.看下面例子: 测试了主流浏览器IE7-IE11.opera

C++里面的const和c语言里面的const

众所周知:在C语言里面用const:是可以修改的: //C语言里面可以通过指针修改 int main() { //可以这么说在C语言中a是一个只读的常量.按照理论我们不好修改// const int a=10; printf("%x",&a);//c语言里面的 常量a是可以去地址的. int *p=null; p=(int *)&a; //但是可以通过地址修改 *p=11; printf("修改之后%d",a); } 这里面的a是可以修改的: 但是看

类 this指针 const成员函数 std::string isbn() const {return bookNo;}

转载:http://www.cnblogs.com/little-sjq/p/9fed5450f45316cf35f4b1c17f2f6361.html C++ Primer 第07章 类 7.1.2 ?Sales_data类的定义如下: #ifndef SALES_DATA_H #define SALES_DATA_H #include <string> #include <iostream> class Sales_data { public: std::string isbn

对于这个函数const int func(const int&amp; a) const声明中,三个const分别是什么意思?

第一个const 函数的返回值类型是const. 这个const修饰没什么意义,你可以想象一下: 既然是函数的 返回值,而且是值传递的形式,是否const有什么意义.如果指针(引用)传递,怎表示返回值的内容不可修改:一般用在赋值操作中,例: const A& operator =() { ... }第二个const修改函数的输入参数,这样可以提高效率.如:用实参b调用const int func(const int& b) const时,将跳过调用的过程(不复制函数),而直接运行它的内容.

invalid conversion from `const void*&#39; to `void*&#39;

在编译一个工程时出错,使用memcpy函数处报错 invalid conversion from `const void*' to `void*' void image2mat(const image<uchar>* I, cv::Mat& img){ int width = I->width(); int height = I->height(); img.create(height, width, CV_8UC1); memcpy(img.datastart, (cha