2023/5/15

Posted wangxinyuan1108

tags:

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


定义一个Dog类,包括体重和年龄两个数据成员及其成员函数,声明一个实例dog1,体重5,年龄10,使用I/O流把dog1的状态写入磁盘文件。
再声明一个实例dog2,通过读取文件dog1的状态赋给dog2。分别用文本方式和二进制方式操作文件。


二进制:

#include<fstream> using namespace std; class Dog public: int getdoga()return a; int getdogw()return w; void setdog(int x,int y)a=x;w=y; private: int a,w; ; int main() int v1,v2; Dog dog1; dog1.setdog(10,5); ofstream outFile("outfile.txt",ios::out); outFile<<dog1.getdoga()<<" "<<dog1.getdogw(); outFile.close(); Dog dog2; ifstream inFile("outfile.txt",ios::in); inFile>>v1;inFile.seekg(1,ios::cur);inFile>>v2; dog2.setdog(v1,v2); outFile.close(); cout<<"dog1\'s age:"<<dog1.getdoga()<<endl; cout<<"dog1\'s weight:"<<dog1.getdogw()<<endl; cout<<"dog2\'s age:"<<dog2.getdoga()<<endl; cout<<"dog2\'s weight:"<<dog1.getdogw()<<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的也很有意思,如下:

技术分享

 

以上是关于2023/5/15的主要内容,如果未能解决你的问题,请参考以下文章

APIO2023 游记

06.python实现docx文件处理_筛选出背景是红色的行