首页 > 其他
IO流-文本IO\读写二进制数据
文本IO一、简述OutputStreamWriter类使用选定的编码方式吧Unicode字符流转换为字节流,InputStreamReader类将包含字节的输入流转为可以产生Unicode字符的读入器。例:(1)InputStreamReader in = new InputStreamReader...
分类:其他   时间:2015-09-21 19:24:36    收藏:0  评论:0  赞:0  阅读:287
计算文字size的方法
在我们开发过程中,不免要遇到计算文字的frame的时候,那文字的frame到底是如何来计算呢?今天我给大字介绍一个方法,用来计算文字的size希望对你的开发有帮助:注:我这段代码大家可以直接拿过来用,只需要调用这个方法即可,真正的干货啊!//计算文字size的方法/** * 计算文字的size *....
分类:其他   时间:2015-09-21 19:24:26    收藏:0  评论:0  赞:0  阅读:232
不知道空 或 null 时 用&&
String fileNaem = context.getData(); if (null != fileNaem || !fileNaem.equals("")) 抛出java.lang.NullPointerException在不知道 接收的数据 是 空 还是 null 的时候 就用 &&|.....
分类:其他   时间:2015-09-21 19:23:57    收藏:0  评论:0  赞:0  阅读:265
tableview 刷新后 显示到第一行
[self.tableViewreloadData];[self.tableViewselectRowAtIndexPath:[NSIndexPathindexPathForRow:0inSection:0]animated:NOscrollPosition:UITableViewScrollPos...
分类:其他   时间:2015-09-21 19:23:26    收藏:0  评论:0  赞:0  阅读:256
将函数声明为Static的作用
表示静态函数,它为所有类共有的。调用该函数直接使用类名加上修饰符,如:Windows win;Windows::W_SIZE();而不是:win.W_SIZE();静态函数只能处理静态数据成员,不能处理非静态程序,如:class Window{public:static void W_SIZE();...
分类:其他   时间:2015-09-21 19:23:16    收藏:0  评论:0  赞:0  阅读:203
0916 编译原理第二次上机实验
#include#includevoid Fenxi(char c,char b);void word(char a[]);void number(char a[]);int i; //定义全局变量iint s=1; //用来记录是否存在非法字符main(){ char a[50]; printf(...
分类:其他   时间:2015-09-21 19:22:46    收藏:0  评论:0  赞:0  阅读:272
0916 编程实验一 词法分析程序
#include#includeint ddd(char a[100],int i){ switch(a[i]) { case '+':case '-':case '*':case '/':case '=':case ';':case '(':case ')': ...
分类:其他   时间:2015-09-21 19:22:36    收藏:0  评论:0  赞:0  阅读:223
you still need to add "remote-notification"
You've implemented -[application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of...
分类:其他   时间:2015-09-21 19:22:26    收藏:0  评论:0  赞:1  阅读:1495
0916 编程实验一 词法分析程序
#include #include char prog[80],token[8],ch;int syn,p,m,n,sum;char *rwtab[6]={"begin","if","then","while","do","end"}; scaner();main(){p=0; printf("输入...
分类:其他   时间:2015-09-21 19:22:06    收藏:0  评论:0  赞:0  阅读:271
0916编译原理词法分析作业二
#include#include#include#define _KEY_WOED_END "waiting for your expanding" //关键字结束标志typedef struct{ int typenum; char * word;}WORD;char input[255]...
分类:其他   时间:2015-09-21 19:21:46    收藏:0  评论:0  赞:0  阅读:304
Listview异步加载图片之优化篇
在APP应用中,listview的异步加载图片方式能够带来很好的用户体验,同时也是考量程序性能的一个重要指标。关于listview的异步加载,网上其实很多示例了,中心思想都差不多,不过很多版本或是有bug,或是有性能问题有待优化。有鉴于此,本人在网上找了个相对理想的版本并在此基础上进行改造,下面就让...
分类:其他   时间:2015-09-21 19:21:17    收藏:0  评论:0  赞:0  阅读:250
0921 词法分析程序
#include#include#include#define _KEY_WOED_END "waiting for your expanding" //关键字结束标志typedef struct{ int typenum; char * word;}WORD;char inpu...
分类:其他   时间:2015-09-21 19:21:06    收藏:0  评论:0  赞:0  阅读:325
个人C++ 编码规范
(一)变量命名 int i为前缀 int[] arr为前缀 int* pi为前缀 unsigend int ui为前缀 unsigend int* pui为前缀 short s为前缀 short* ps为前缀 unsigend short us为前缀 unsig...
分类:其他   时间:2015-09-21 19:20:56    收藏:0  评论:0  赞:0  阅读:261
初步STL集装箱List
List特点:1.它实质上是一个双向链表watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvd2FuZ3hpYW9idXB0/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Cen...
分类:其他   时间:2015-09-21 19:20:46    收藏:0  评论:0  赞:0  阅读:263
黑马程序员——面向对象
------Java培训、Android培训、iOS培训、.Net培训、期待与您交流! ------- 本文是对java面向对象概念的总结和回顾。面向对象是java语言的一个重要特点,只有真正理解了面向对象的基本概念,并应用面向对象的概念编写java程序,才算是真正的java程序员。一、面向对象的....
分类:其他   时间:2015-09-21 19:20:17    收藏:0  评论:0  赞:0  阅读:213
Set函数、Get函数、点语法和类方法
1.Set函数setter函数,对成员变量赋值。Set函数的一般写法以对age操作为例,写法为:-(void)setAge:(int)newage。2.Get函数getter函数,对成员变量取值。Get函数的一般写法也以对age的操作为例,写法为:-(int)age;3.点运算符在OC的类对象中不能...
分类:其他   时间:2015-09-21 19:20:06    收藏:0  评论:0  赞:0  阅读:269
Scala安装
Spark是用Scala语言写的,所以要先把Scala学好,Scala的安装很简单:1、下载Scala:http://www.scala-lang.org/download/2、下载下来的是msi安装包,直接安装即可,安装过程中会自动帮你更新系统环境变量PATH,所以安装后无需使设置任何环境变量便可...
分类:其他   时间:2015-09-21 19:19:36    收藏:0  评论:0  赞:0  阅读:312
[LeetCode] Peeking Iterator
Peeking IteratorGiven an Iterator class interface with methods:next()andhasNext(), design and implement a PeekingIterator that support thepeek()operat...
分类:其他   时间:2015-09-21 19:19:26    收藏:0  评论:0  赞:0  阅读:219
PID控制器(比例-积分-微分控制器)- II
Table of ContentsPractical Process ControlProven Methods and Best Practices for Automatic PID ControlI. Modern Control is Based on Process Dynamic Beh...
分类:其他   时间:2015-09-21 19:18:47    收藏:0  评论:0  赞:0  阅读:272
0916 编译原理第二次上机作业
#include#include#includechar prog[80],token[8];char ch;int syn,p,m=0,n,row,sum=0;char *rwtab[6]={"begin","if","then","while","do","end"}; void scaner(...
分类:其他   时间:2015-09-21 19:18:16    收藏:0  评论:0  赞:0  阅读:267
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!