5.25 3.3

Posted yindantong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.25 3.3相关的知识,希望对你有一定的参考价值。

一、问题

 二、分析

三、代码

#include<iostream>
using namespace std;
void main()

long mul,number,k,a,b;
cout<<"Itexists following automorphic nmbers small than 100000:"<<endl;
for(number=0;number<100000;number++)

for(mul=number,k=1;(mul/=10)>0;k*=10);
a=k*10;
mul=0;
b=10;
while(k>0)

mul=(mul+(number%(k*10))*(number%b-number%(b/10)))%a;
k/=10;
b*=10;

if(number==mul)
cout<<number<<endl;

四、结果

 

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.25 3.3的主要内容,如果未能解决你的问题,请参考以下文章

5.1-5.25总结

团队计划(5.25)

5.25 FLASH

5.25上午

5.25下午

5.25 问答练习