c++中的常引用

常引用是只读的引用

#include <iostream>
#include <cmath>
using namespace std;
class Point{
	public:
		Point(int x=0, int y = 0):x(x),y(y){}
		int getX(){return x;}
		int getY(){return y;}
	//友元函数
		friend float dist(const Point &p1,const Point &p2);
	private:
		int x,y;
};
//常引用只能读取变量,不能修改变量
float dist(const Point &p1, const Point &p2){
	// p1.x = 1; //cannot assign to variable 'p1' with const-qualified type 'const Point &'
	double x = p1.x - p2.x;
	double y = p1.y - p2.y;
	//强制类型转换操作符,static_cast使用位截断进行处理
	return static_cast<float>(sqrt(x*x+y*y));
}

int main()
{
	//常量
   const Point myp1(1,1),myp2(4,5);
   cout << "The distance is :";
   cout << dist(myp1,myp2) << endl;
   return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值