5.23
Posted zjm921
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.23相关的知识,希望对你有一定的参考价值。
#include<iostream>
#include<cmath>
using namespace std;
class Point
private:
double x;
double y;
double z;
public:
Point(double a,double b,double c):x(a),y(b),z(c);
friend double operator-(Point,Point);
;
template <class T>
double dist(T a, T b)
return abs(a-b);
double operator-(Point P1,Point P2)
return sqrt(pow(P1.x-P2.x,2)+pow(P1.y-P2.y,2)+pow(P1.z-P2.z,2));
int main()
int i,j;
float p,q;
double x1,y1,z1,x2,y2,z2;
int flag;
while(1)
cin>>flag;
if(flag==0)
break;
if(flag==1)
cin>>i>>j;
cout<<dist(i,j)<<endl;
else if(flag==2)
cin>>p>>q;
cout<<dist(p,q)<<endl;
else
cin>>x1>>y1>>z1>>x2>>y2>>z2;
Point P1(x1,y1,z1),P2(x2,y2,z2);
cout<<dist(P1,P2)<<endl;
return 0;
Android Support Annotations :安卓注解快速上手
我们都知道,安卓资源文件都是int类型的ID来保存其引用,通过注解类型,可以让我们在写代码的时候,及时发现参数类型的错误,避免潜在的BUG,如下:
我们通过@LayoutRes指定了参数必须要是R.layout.xxx格式的数据,传数字IDE就会提示我们错误
通过gradle,把注解类型引入到项目中
compile ‘com.android.support:support-annotations:23.1.1‘
安卓原生给我们提供了一系列注解类,支持我们的开发
注解类所在包位置:安卓SDK路径extrasandroidm2repositorycomandroidsupportsupport-annotations
我们随便找个23.1.1文件夹,找到里面的support-annotations-23.1.1-sources.jar,通过JD-GUI查看
通过里面Res结尾的类,我们就可以限定安卓不同类型的资源ID了
里面其他类我们也可以看看,比如NonNull、Nullable、限定范围FloatRange的也很有意思,如下:
以上是关于5.23的主要内容,如果未能解决你的问题,请参考以下文章