2016年的第一篇文章,容我先喷喷新年的情怀,..........,好了,喷的差不多了。 在面向对象中,我们需要对类进行横向和纵向的认识,不同的类有不同特色的成员,同时在不同类的继承中,子类获得父类的成员也是丰富多彩。 先概述: 1.抽象类 抽象类中不是所有的方法都是抽象方法,对于单纯抽象类而言,是
The PHP date() function is used to format date and/or a time and formats as timestamp to a more readable data and time. date(format, timestamp) //form
分类:
其他好文 时间:
2016-02-18 13:49:52
阅读次数:
149
<!DOCTYPE html><html><body><?php$cars = array ( array("Volvo",22,18), array("BMW",15,13), array("Saab",5,2), array("Land Rover",17,15) );for ($row = 0
分类:
其他好文 时间:
2016-02-18 13:51:42
阅读次数:
150
public static class SharePointHelpExtension { /// <summary> /// 获取链接地址的Url传参 /// </summary> /// <param name="uri"></param> /// <returns></returns> pub
分类:
其他好文 时间:
2016-02-18 13:49:44
阅读次数:
211
--语法begin try --SQL end trybegin catch --sql (处理出错动作)end catch begin tryselect 2/0end trybegin catchselect error_number() as error_number ,error_messa
分类:
数据库 时间:
2016-02-18 13:50:24
阅读次数:
206
【题意简述】:输入一个数,假设这个数是素数就输出0,假设不是素数就输出离它近期的两个素数的差值,叫做Prime Gap。 【分析】:这题过得非常险。由于我是打的素数表。由于最大的素数是1299709,所以注意在打表时要使用long long。否则程序应该不能执行。注意这一点应该就能够了。积累! //
分类:
其他好文 时间:
2016-02-18 13:51:03
阅读次数:
167
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title></title> 5 </head> 6 <body> 7 <script language=javascript> 8 9 cities = new Object(); 10 11 cities['台湾']=
分类:
Web程序 时间:
2016-02-18 13:51:31
阅读次数:
1756
题目描述: 有一个长度为整数L(1<=L<=10000)的马路,可以想象成数轴上长度为L的一个线段,起点是坐标原点,在每个整数坐标点有一棵树,即在0,1,2,...,L共L+1个位置上有L+1棵树。 现在要移走一些树,移走的树的区间用一对数字表示,如 100 200表示移走从100到200之间(包括
分类:
其他好文 时间:
2016-02-18 13:50:17
阅读次数:
128
奉上原作链接:http://wenku.baidu.com/view/e55ca209ba1aa8114431d98a.html 算数基本定理:每个大于1的自然数均可写为质数的积,而且这些素因子按大小排列之后,写法仅有一种方式(在排列组合中也有讲)。例如:1200 = 24*3*52。 待续。。
分类:
其他好文 时间:
2016-02-18 13:48:16
阅读次数:
152
1、cvline cvLine(image,p1,p2,CV_RGB(255,255,255),3,8,0); //p1,p2分别为起点和终点 为Tcvpoint类型数据,3表示线宽,8表示线条类型 2、cvEllipse cvEllipse(image,center,size,0,0,270,CV
分类:
其他好文 时间:
2016-02-18 13:50:13
阅读次数:
139
/// <summary> /// 从html中提取纯文本 /// </summary> /// <param name="strHtml"></param> /// <returns></returns> public static string GetHtmlContentText(string
分类:
Web程序 时间:
2016-02-18 13:47:30
阅读次数:
138
遇到一个问题: 在python shell 中调用局域网远程共享文件时,没问题。但是在webpy中调用时,报错:没有权限。那一定是apache设置问题。 网上找不到类似的方法,于是换个思路搜了一下“php访问网络共享资源和本地文件”。(php和webpy调用原理也差不多) 解决方法: 1、确认远程链
分类:
Web程序 时间:
2016-02-18 13:46:54
阅读次数:
187
【Unix环境高级编程】编写变长参数函数
分类:
其他好文 时间:
2016-02-18 13:46:33
阅读次数:
130
NSDate类用于保存时间值,同时提供了一些方法来处理一些基于秒级别时差(Time Interval)运算和日期之间的早晚比较等。 1. 创建或初始化可用以下方法 用于创建NSDate实例的类方法有 + (id)date; 返回当前时间 + (id)dateWithTimeIntervalSince
分类:
其他好文 时间:
2016-02-18 13:46:44
阅读次数:
162
版权声明:本文出自郭霖的博客,转载必须注明出处。 目录(?)[-] Volley简介 下载Volley StringRequest的用法 JsonRequest的用法 转载请注明出处:http://blog.csdn.net/guolin_blog/article/details/17482095
分类:
移动开发 时间:
2016-02-18 13:46:01
阅读次数:
238
举例: UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Default Alert View"message:@"Defalut" delegate:self cancelButtonTitle:@"Cancel" othe
分类:
其他好文 时间:
2016-02-18 13:46:30
阅读次数:
141
Hamming Distance Description Have you ever heard of the Hamming distance. It is the number of positions for which the corresponding digits differ. You
分类:
其他好文 时间:
2016-02-18 13:46:37
阅读次数:
175