码迷,mamicode.com
首页 >  
搜索关键字:his    ( 12534个结果
HDU 5083 Instruction(字符串处理)
Problem Description Nowadays, Jim Green has produced a kind of computer called JG. In his computer, the instruction is represented by binary code. How ...
分类:其他好文   时间:2017-04-11 09:43:58    阅读次数:216
BullsEyeView自定义view
打印log日志为 02-01 11:15:43.310 11521-11521/com.osblog.androidrecipes V/BullsEyeView: 720EXACTLY 02-01 11:15:43.310 11521-11521/com.osblog.androidrecipes ...
分类:其他好文   时间:2017-04-11 01:11:43    阅读次数:202
[tmux] Copy and paste text from a tmux session
One non-obvious, but extremely useful, feature in tmux is copy-pasting text between panes. This also allows you to scroll back in a tmux sessoin. We'l ...
分类:其他好文   时间:2017-04-10 22:38:49    阅读次数:145
Linux中man手册的使用
Linux中man手册的使用 ——以CentOS6.8为例 本文旨在介绍在Linux中如何快速入手新命令,毕竟在Linux系统中,可以通过命令完成一切操作。 相关命令:help man whatis info #whatis 对英语有一定了解的朋友,应该对what is两个单词非常熟悉了,中意为“是 ...
分类:系统相关   时间:2017-04-10 21:52:54    阅读次数:305
csuoj-1004-Xi and Bo
题目: Description Bo has been in Changsha for four years. However he spends most of his time staying his small dormitory. One day he decides to get out ...
分类:其他好文   时间:2017-04-10 21:22:36    阅读次数:201
[zhuan]Android 异常处理:java.lang.IllegalArgumentException(...contains a path separator)
http://blog.csdn.net/alex_zhuang/article/details/7340901 对以下错误: Java.lang.RuntimeException: java.lang.IllegalArgumentException: File /data/data/com.al ...
分类:移动开发   时间:2017-04-10 21:20:40    阅读次数:296
csuoj-1003-UC Browser
题目: Description Brother Xi has recently bought a smart mobile phone. Now he surfs Internet by his mobile phone almost every day. The browser that he u ...
分类:其他好文   时间:2017-04-10 20:41:02    阅读次数:213
在ASP.NET MVC 中获取当前URL、controller、action 、参数
URL的获取很简单,ASP.NET通用:【1】获取 完整url (协议名+域名+虚拟目录名+文件名+参数) string url=Request.Url.ToString(); 【2】获取 虚拟目录名+页面名+参数: string url=Request.RawUrl;(或 string url=R ...
分类:Web程序   时间:2017-04-10 19:35:01    阅读次数:166
javascript 面向过程到面向对象几点注意
/** * 整理于妙味课堂视频 2017.04.10 */ 原则: 不能有函数嵌套函数,但可以有全局变量。 过程: onload → 构造函数 全局变量 → 属性 函数 → 方法 改错: this、事件、闭包、传参 对象与闭包: 通过闭包传递this ...
分类:编程语言   时间:2017-04-10 16:58:15    阅读次数:153
js实现双向链表, 双向链表需要增加一个previous属性
双向链表, 双向链表需要增加一个previous属性 /*双向链表 * */ function Node(element) { this.element = element; this.next = null; this.previous = null;//双向链表在这里需要增加一个previous... ...
分类:Web程序   时间:2017-04-10 16:47:46    阅读次数:245
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!