摘要:
public string DownFile = "\\下载.txt";//下载路径 public string LoadFile = "\\上传.txt";//上传路径 public List<string> _readtxt = new List<string>(); public MainFo 阅读全文
posted @ 2017-05-28 14:53
claireyuancy
阅读(216)
评论(0)
推荐(0)
摘要:
Problem Description 给你两个集合。要求{A} + {B}. 注:同一个集合中不会有两个同样的元素. Input 每组输入数据分为三行,第一行有两个数字n,m(0<n,m<=10000),分别表示集合A和集合B的元素个数.后两行分别表示集合A和集合B.每一个元素为不超出int范围的 阅读全文
posted @ 2017-05-28 13:46
claireyuancy
阅读(153)
评论(0)
推荐(0)
摘要:
关于UrlEncode的实现(C++)。网上有非常多不同的版本号。对须要编码的字符集的选取并不统一。那么究竟有没有标准呢?答案是有的。參见wiki 绝对不编码的,仅仅有字母、数字、短横线(-)、下划线(_)、点(.)和波浪号(~),其它字符要视情况而定。所以一般性的urlencode仅仅需保留上述字 阅读全文
posted @ 2017-05-28 12:20
claireyuancy
阅读(7625)
评论(0)
推荐(1)
摘要:
首先看geeksforgeeks上的两个程序: 程序1: #include<stdio.h> int main() { float x = 0.1; if (x == 0.1) printf("IF"); else if (x == 0.1f) printf("ELSE IF"); else pri 阅读全文
posted @ 2017-05-28 11:47
claireyuancy
阅读(314)
评论(0)
推荐(0)
摘要:
linux下线程 线程与进程的关系: 之前转载的微信文章,进程与线程的差别已经说得比較清楚了。能够查看之前转载的文章。linux进程与线程的差别。 创建一个线程: #include<pthread.h> int pthread_creat(pthread_t * thread,pthread_att 阅读全文
posted @ 2017-05-28 11:46
claireyuancy
阅读(188)
评论(0)
推荐(0)
摘要:
分享3个设计简洁优雅、配色干净利落、技术细腻的响应式设计站点:Cloggs,电子商务类https://www.cloggs.co.uk/,移动端为其带来30%的流量增长。Canvas大会。主题页面http://2013.canvasconf.co.uk/,蓝宝石背景风格,配色典雅迷人,细细体会不同屏 阅读全文
posted @ 2017-05-28 10:20
claireyuancy
阅读(205)
评论(0)
推荐(0)
摘要:
原文地址:http://www.yanwushu.com/post/43.html 存储位置 SharedPreferences数据保存在: /data /data/<package_name> /shared_prefs 文件夹下,以XML格式保存,根元素为:<map />。文件名称为获取Shar 阅读全文
posted @ 2017-05-28 08:58
claireyuancy
阅读(200)
评论(0)
推荐(0)