在Android开发中通过localhost或127.0.0.1访问本地服务器时,会报java.net.ConnectException: localhost/127.0.0.1:8083 -Connection refused异常。为什么会报这个异常呢?因为Android模拟器本身把自己当做了lo...
分类:
移动开发 时间:
2015-08-18 21:18:51
阅读次数:
173
Delphi 在任务栏隐藏程序图标方法一:1、修改工程文件中的“Application.MainFormOnTaskbar := True;”为“Application.MainFormOnTaskbar := False;”2、在主窗体的 OnShow 事件中写下:ShowWindow(Appli...
http://www.javamex.com/tutorials/synchronization_final.shtmlThread-safety with the Java final keywordAs of Java 5, one particular use of the final key...
分类:
其他好文 时间:
2015-08-18 21:18:43
阅读次数:
130
自己的电脑比较慢,尤其装了oracle10g后,服务开启和关闭用bat文件操作省事点开启服务@echo offnet start OracleServiceORCLnet start OracleDBConsoleorclnet start OracleOraDb11g_home1TNSListen...
分类:
数据库 时间:
2015-08-18 21:19:55
阅读次数:
221
原文:http://blogs.msdn.com/b/oldnewthing/archive/2004/08/02/205624.aspx很棒的原创,我是说为什么在对dialog box使用SetFocus不管用呢简单的说,解决办法就是SendMessage(hdlg, WM_NEXTDLGCTL,...
分类:
其他好文 时间:
2015-08-18 21:18:13
阅读次数:
119
:注意两数相乘可能超出范围 导致WA#includeusing namespace std;int GCD(int a, int b){ if(b==0) return a; return GCD(b, a%b);}int main(){ ...
分类:
其他好文 时间:
2015-08-18 21:17:58
阅读次数:
179
free查看系统中空闲或被使用的内存。uname打印系统信息,kernal、cup、硬件等等。uptime显示出目前系统已经开机多久的时间,以及 1, 5, 15 分钟的平均负载。netstat查看网络方面的信息,网络连接,路由表,接口状态 (Interface Statistics),masque...
分类:
其他好文 时间:
2015-08-18 21:18:05
阅读次数:
127
Valid Numberalidate if a given string is numeric.Some examples:"0"=>true" 0.1 "=>true"abc"=>false"1 a"=>false"2e10"=>trueNote:It is intended for the p...
分类:
其他好文 时间:
2015-08-18 21:16:56
阅读次数:
123
先说下要解决的问题: select rowid,acct_id,state_date from acct; 修改后,1)sql指明rowid,可以显示出来 2)时间格式显示为YYYYMMDD HH24:MI:SS 3)对于数字超长的,不使用科学计数法显示 安装与环境 (TOAD与PLSQL共存) T...
分类:
数据库 时间:
2015-08-18 21:17:47
阅读次数:
249
The answer is pretty simple -- use it when you actually need something it provides that synchronized doesn't, like timed lock waits, interruptible loc...
分类:
其他好文 时间:
2015-08-18 21:17:28
阅读次数:
123
步骤:在Sublime Text里,按ctrl+`,打开Console,一次性输入如下代码:import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(...
分类:
其他好文 时间:
2015-08-18 21:18:40
阅读次数:
101
经常会忘记mysql中升序和降序用什么字符来表示,现在就做个笔记:升序排列asc,降序排列desc,举个例子,下面是按时间降序调用栏目的文章,也即是栏目最新文章[e:loop={"select classid, classname, classpath from `[!db.pre!]enewscl...
分类:
数据库 时间:
2015-08-18 21:16:02
阅读次数:
219
tasks中写入的是线程号cgroup.procs是进程号===================CPU隔离=====================主机CPU核数:cat /proc/cpuinfo | grep -w processor | wc -l 32一个实例最大可以占有的核数: 10cpu...
分类:
其他好文 时间:
2015-08-18 21:17:38
阅读次数:
169
具体参考:http://m.blog.csdn.net/blog/coolmeme/44563577void f(Widget&& param); // 右值引用Widget&& var1 = Widget(); // 右值引用templatevoid f(std::vector&& param.....
分类:
其他好文 时间:
2015-08-18 21:16:50
阅读次数:
146
1、??SubsetsGiven a set of distinct integers,S, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set ...
分类:
其他好文 时间:
2015-08-18 21:15:41
阅读次数:
136
先膜拜下大神的帖子,从源码的角度分析android的Handler机制。 链接:android的消息处理机制(图+源码分析)——Looper,Handler,Message 这里就不赘言,仅仅做一些介绍,想看详细请猛戳上面的链接。 android的消息机制由三块组成Looper,Handl...
分类:
移动开发 时间:
2015-08-18 21:16:53
阅读次数:
138
修改Delphi工具控件的默认字体:注册表:Delphi 6: HKEY_CURRENT_USER\Software\Borland\Delphi\6.0Delphi 7: HKEY_CURRENT_USER\Software\Borland\Delphi\7.0下增加一个名为“FormDesign...