5.16
Posted lml66
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.16相关的知识,希望对你有一定的参考价值。
#include<iostream>
using namespace std;
int main()
int a[5];
for(int i=0;i<5;i++)
cin>>a[i];
return 0;
6-4
#include<iostream>
#define N 40
using namespace std;
int main()
int oneArray[N];
int c = (unsigned)(sizeof(oneArray) / sizeof(oneArray[0]));
cout<<c<<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.16的主要内容,如果未能解决你的问题,请参考以下文章