`
文章列表
hashmap 在开发中用的很多,看下源码实现学习一下,   字段 static final int DEFAULT_INITIAL_CAPACITY = 16;//默认的数组长度 static final int MAXIMUM_CAPACITY = 1 << 30;//最大的数组长度 static final float DEFAULT_LOAD_FACTOR = 0.75f;//默认负载比率,数组不会全部填满数据 transient Entry[] table;//hashmap内部也是用数组来存储数据 ...

textmate note

    博客分类:
  • mac
F1 开关一个block cmd+F2 做标记  F2回到标记 把文件夹拖到textmate图标 快速建立project  cmd+1  一号tab   opt+cmd+ 左右  tab移动 shift+cmd+F     Find in Project... cmd+F 查找 cmd+G 查找下一个  +shift上一个 cmd+T   查找文件 ctrl+cmd+T 查看可用模板 代码快 ctrl+shift+k 删一行 ctrl+opt+cmd+P  网页预览 ctrl+opt+cmd+b  bundle editor ctrl+opt+cmd+v  粘贴选择列 ...
mysql 的group_concat函数很好用,可以把列转成行。 SELECT threadid, group_concat(postid separator ',') as postids FROM msg_reply where group by threadid 输出 threadid     postids --------------------- 1               1,2,3,4 2               5,6,7 得到postids 后可以很方便做in查询,连implode都省了 完整的语法如下    group_concat([DI ...
mysql的DISTINCT的关键字有很多你想不到的用处 1.在count 不重复的记录的时候能用到 比如SELECT COUNT( DISTINCT id ) FROM tablename; 就是计算talbebname表中id不同的记录有多少条 2,在需要返回记录不同的id的具体值的时候可以用 比如SELECT DISTINCT id FROM tablename; 返回talbebname表中不同的id的具体的值 3.上面的情况2对于需要返回mysql表中2列以上的结果时会有歧义 比如SELECT DISTINCT id, type FROM tablename;实际上 ...
web.xml   <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>   public class ContextLoaderListener extends ContextLoader   private ContextLoader contextLoader; public void contextInitialized(ServletCon ...
httpd.conf   Include "conf/mod_jk.conf" Include "conf/vhosts.conf" Include "conf/vhosts-s.conf"    如果使用httpd-vhosts.conf 启动服务会失败, 因为 apache 自己引入过?! 但是在不同目录下啊   Include "conf/extra/httpd-vhosts.conf"   mod_jk.conf   # Load mod_jk module # Spec ...
RewriteEngine on RewriteCond %{REQUEST_URI} ^/beta/p/        #只匹配/beta/p路径下 RewriteCond %{REQUEST_URI} !.action$        #没有以.action结尾的 RewriteRule ^/beta/p/(.*)$ /beta/p/$1\.action [R]    #转换   没有上面2个条件会造成无限循环匹配 导 ...
做一个app , window下面是tabBarController, tabBarController里面3个tab, 每个都是一个navController, 3个navController的rootView我都是用的一个自定义的RootView,  RootView实际是一个tableView的子类 现在的问题是,我在初始化rootView的时候怎么知道用户点的那个tab, 从而展示不同的内容,     NSUInteger *i= self.navigationController.tabBarController.selectedIndex; ...
tip: 在finder 中选中一个文件  打开qs, command+G, 文件会被qs选中,然后可以对文件做操作(我一般是email之)     List of shortcut keys Shortcut Command How useful (?) . (Period) Shift to text mode entry +       – Cmnd-A Will bring up Combined Objects or select all +       – Cmnd-B ...
方法一 @implementation UINavigationBar (UINavigationBarCategory) - (void)drawRect:(CGRect)rect { //加入旋转坐标系代码 // Drawing code UIImage *navBarImage = [UIImage imageNamed:@"navibar.png"]; CGContextRef context = UIGraphicsGetCurrentContext(); ...
Create the project in XCODE. Setup subversion in XCODE and select the subversion repository for this project. Use Xcode SCM > Repository and click on the IMPORT icon. This will move the local copy to the subversion repository. Now delete your local copy (or move it to another location just ...

cron 表达式

    博客分类:
  • J2EE
http://sosuny.iteye.com/blog/462742
processlist 命令的输出结果显示了有哪些线程在运行,可以帮助识别出有问题的查询语句,两种方式使用这个命令。 1.        进入 mysql/bin 目录下输入 mysqladmin processlist; 2.        启动 mysql ,输入 show processlist; 如果有 SUPER 权限,则可以看到全部的线程,否则,只能看到自己发起的线程(这是指,当前对应的 MySQL 帐户运行的线程)。
用 'top -i' 看看有多少进程处于 Running 状态,可能系统存在内存或 I/O 瓶颈,用 free 看看系统内存使用情况,swap 是否被占用很多,用 iostat 看看 I/O 负载情况... 还 有一种办法是 ps -ef | sort -k7 ,将进程按运行时间排序,看哪 ...
如何查 看MX记录是否生效 运行->CMD.exe nslookup 回车; set ty=mx 回车; 输入你要查询的域名 回车       A (Address) 记录 是用来指定主机名(或域名)对应的IP地址记录。用户可以将该域名下的网站服 ...
Global site tag (gtag.js) - Google Analytics