我的经历 前几天有人问我这个问题。我说GET是用于获取数据的,POST,一般用于将数据发给服务器之用。 这个答案好像并不是他想要的。于是他继续追问有没有别的区别?我说这就是个名字而已,如果服务器支持,他完全可以把GET改个名字叫GET2。他反问道,那就是单纯的名字上的区别喽?我想了想,我觉得如果说再...
分类:
其他好文 时间:
2015-07-31 10:29:25
阅读次数:
97
先把一般使用时候用到的几个串口库函数列出来。以下是串口初始化的一个参考函数:void uart_init(u32 bound){ GPIO_InitTypeDef GPIO_InitStructure; //对GPIO进行配置 USART_InitTypeDef USART_Ini...
分类:
其他好文 时间:
2015-07-31 10:31:37
阅读次数:
151
1 #include 2 #include 3 #include 4 5 using namespace std; 6 7 struct Node 8 { 9 int l,r;10 int num;11 }bn[16000000];12 13 void build(int...
分类:
其他好文 时间:
2015-07-31 10:31:15
阅读次数:
135
背景介绍:项目以前建立的库,表空间文件文件比较多,问了一下dba,了解到表空间建立很多没有带来优惠(都在一块磁盘上),效率也不会提高;现在要进行新库的迁移(目前使用的是asm磁盘组rac集群),正好把多个表空间变成一个表空间环境: 原库:win2008,64位,oracle11g 目标库:cen.....
分类:
其他好文 时间:
2015-07-31 10:29:04
阅读次数:
114
当synchronized关键字修饰一个方法的时候,该方法叫做同步方法。 Java中的每个对象都有一个锁(lock),或者叫做监视器(monitor),当一个线程访问某个对象的synchronized方法时,将该对象上锁,其他任何线程都无法再去访问该对象的synchronized方法了。直到之...
分类:
其他好文 时间:
2015-07-31 10:30:43
阅读次数:
115
1、五大核心 groupId:artifactId:packaging:classifier:version. 2、三核心 groupId:artifactId:version are all required fields. The three fields act much like an ad...
分类:
其他好文 时间:
2015-07-31 10:28:22
阅读次数:
87
The number of divisors(约数) about Humble NumbersTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 303...
分类:
其他好文 时间:
2015-07-31 10:27:39
阅读次数:
111
一、脚本源码使用VBS脚本遍历XML文件 1 Option Explicit 2 3 '定义常量 4 Const NodeElement = 1 '元素 5 Const NodeText = 3 '文本 6 Const NodeCDATA = 4 ...
分类:
其他好文 时间:
2015-07-31 10:27:50
阅读次数:
106
1 #include 2 #include 3 4 using namespace std; 5 6 struct Node 7 { 8 int l; 9 int r;10 int sum;11 int lz;12 }bn[400000];13 14 voi...
分类:
其他好文 时间:
2015-07-31 10:28:57
阅读次数:
110
Yesterday, I just got the newest Digiprog III for BW X5 to diagnose LCM, EWS & Key Programming Via EWS . Well packed, but unfortunately, it cannot be ...
分类:
其他好文 时间:
2015-07-31 10:27:47
阅读次数:
140
Walk OutTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 1167Accepted Submission(s): 216Problem Des...
分类:
其他好文 时间:
2015-07-31 10:25:57
阅读次数:
202
onClick="javascript:document.getElementById('codeimage').src='/index.php?act=seccode&op=makecode&nchash=&t=' + Math.random();"
分类:
其他好文 时间:
2015-07-31 10:26:53
阅读次数:
207
面向对象三要素 封装(Encapsulation) 继承(Inheritance) 多态(Polymorphism)面向对象五原则 单一职责原则(SRP) 开放-封闭原则(OCP) Liskov替换原则(LSP) 依赖倒置原则(DIP) 接口隔离原则(ISP)面向对象...
分类:
其他好文 时间:
2015-07-31 10:26:32
阅读次数:
189
基本约束规则设置1、线间距设置2、线宽设置3、设置过孔4、区域约束规则设置5、设置阻抗6、设置走线的长度范围7、设置等长
分类:
其他好文 时间:
2015-07-31 10:25:32
阅读次数:
185
使用xcode6.1创建的项目, 添加新浪SDK,运行[WeiboSDKregisterApp:kAppKey];这一步崩溃,抛出以下*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason:...
分类:
其他好文 时间:
2015-07-31 10:25:04
阅读次数:
311
Problem Description For a tree, which nodes and edges are all weighted, the ratio of it is calculated according to the following equation.Given a comp...
分类:
其他好文 时间:
2015-07-31 10:26:56
阅读次数:
119