码迷,mamicode.com
首页 > 2015年05月18日 > 全部分享
maven+ssh+JPA配置文件
xmlns="http://java.sun.com/xml/ns/javaee"  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee  http://java.sun.com/xml/ns/javaee/web-app_3_...
分类:其他好文   时间:2015-05-18 18:56:00    阅读次数:147
总体把握Android中的触摸事件处理
先看几个函数:提到Android的触摸事件处理,不少人都会立刻想到某些令人头疼的函数,这里列举一下,刺激一下你的小神经: @Override public boolean onTouchEvent(MotionEvent event) { return super.onTouchEvent(event); } @Override public b...
分类:移动开发   时间:2015-05-18 18:56:28    阅读次数:148
SurfaceView 基础用法
android 游戏开发中 SurfaceView 的基础用法...
分类:其他好文   时间:2015-05-18 18:57:28    阅读次数:130
【LeetCode】Add Two Numbers
题目描述You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers...
分类:其他好文   时间:2015-05-18 18:57:11    阅读次数:119
iwconfig tools
shell.albert@yantai:~/tools/sokit-1.3-linux32> /usr/sbin/iwlist Usage: iwlist [interface] scanning [essid NNN] [last]               [interface] frequency               [interface] channel       ...
分类:其他好文   时间:2015-05-18 18:54:28    阅读次数:163
android开发步步为营之61:android定时任务之Handler.postDelayed
/** * */ package com.figo.study; import android.app.Activity; import android.os.Bundle; import android.os.Handler; import android.view.View; import android.view.View.OnClickListener; import androi...
分类:移动开发   时间:2015-05-18 18:54:21    阅读次数:145
SpringMVC 无法加载js,css等静态资源文件
最近在一些技术群里看到有些朋友的馈,SpringMVC 无法加载js,css等静态资源文件,运行时报无法找到异常。下面说下原因及解决方法:        由于SpringMVC支持较优雅的Rest风格的URL,url-patten又是配置的支持所有的模式,所以对于静态资源(css,js,html等)也会去进行匹配,一旦匹配失败控制台会抛URI匹配异常。 这种情况下,需要在S...
分类:编程语言   时间:2015-05-18 18:53:56    阅读次数:238
Android Studio -修改LogCat的颜色*美爆了*
一、 先看效果二、设置 File->Settings 或Ctrl + Alt +S 找到 Editor -> Colors &Fonts -> Android Logcat 或在上面的搜索框中输入Logcat 点中Verbose , Info, Debug等选项,然后在后面将Use Inberited attributes 去掉勾选 再将 Foreground 前的复选框选上,...
分类:移动开发   时间:2015-05-18 18:54:18    阅读次数:158
MIT公开课:计算机科学及编程导论 Python 笔记5 浮点数,逐次逼近法和二分法
Lecture5: Floating point number , successive refinement, finding roots 浮点数和二分法3wschool 数字>>> a = 2 ** 1000 >>> a 1071508607186267320948425049060001810561404811705533607443750388370351051124936122493198...
分类:编程语言   时间:2015-05-18 18:55:25    阅读次数:236
【LeetCode】Longest Substring Without Repeating Characters
题目描述 问题分析 代码 总结 个人声明题目描述Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for “abcabcbb” is “abc”, whic...
分类:其他好文   时间:2015-05-18 18:54:52    阅读次数:99
java的数据类型
注意:基本数据类型中保存的是数据本身,而引用类型保存的是存放数据的空间地址。...
分类:编程语言   时间:2015-05-18 18:55:53    阅读次数:107
类中默认的成员函数
1.默认构造函数 2.默认析构函数 3.拷贝构造函数 4.拷贝赋值函数 5.移动构造函数 6.移动拷贝函数...
分类:其他好文   时间:2015-05-18 18:55:32    阅读次数:111
flashcache 一键安装
最近要用flashcache, 但是发现目前网上帖子介绍的两种安装方式不方便: 1. 通过源码编译,还得和kernel源码一起编译   2. 通过yum,必须联网 所以把安装flashcache的rpm包单独拿出来,加了个简单的脚本,只要有这个压缩包,无需联网和编译即可安装flashcache。 压缩包见附件。 使用示例: -bash-4.1# tar xzvf insta...
分类:系统相关   时间:2015-05-18 18:53:03    阅读次数:190
轻松掌握MySQL数据库锁机制的相关原理
在一个update和insert操作频繁的表中,少量数据测试的时候运行良好,在实际运营中,因数据量比较大(21万条记录),会出现死锁现象,用show processlist查看,可以看到一个update语句状态是Locked,一个delete语句状态是Sending data。查看了一下参考手册,把锁定相关的资料整理下来,以便自己记录和追踪该问题的解决情况: MySQL 5.1支持对MyIS...
分类:数据库   时间:2015-05-18 18:52:50    阅读次数:154
How to check in your files in ADE
1, copy all your files under the folder (Filezilla) 2, Come to the ADE command prompt and navigate to the folder which you have copied files and execute the command "ade mkelem -nc " 3, ade ci -nc -...
分类:其他好文   时间:2015-05-18 18:54:03    阅读次数:555
MySQL的语句执行顺序
MySQL的语句一共分为11步,如下图所标注的那样,最先执行的总是FROM操作,最后执行的是LIMIT操作。其中每一个操作都会产生一张虚拟的表,这个虚拟的表作为一个处理的输入,只是这些虚拟的表对用户来说是透明的,但是只有最后一个虚拟的表才会被作为结果返回。如果没有在语句中指定某一个子句,那么将会跳过相应的步骤。 下面我们来具体分析一下查询处理的每一个阶段 FORM: 对FROM的左...
分类:数据库   时间:2015-05-18 18:53:38    阅读次数:148
git 用法总结
git 用法总结A) git 配置初始化git根目录 在已有目录内部 cd git_root_dir git init 在当前位置生成 git 根目录 git init git_root_dir git 配置文件:~/.gitconfig 或者 git_root_dir/.git/config设置 core infogit config --global core.editor "v...
分类:其他好文   时间:2015-05-18 18:55:06    阅读次数:111
2271条   上一页 1 ... 38 39 40 41 42 43 44 ... 134 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!