##### 1.for,while循环;continue 结束本次循环,进入下一次循环,break 跳出整个当前的循环(注意:不是跳出所有的循环) 2.flag = True/False 标志位;bool值做判定 3. 列表 [ ]:可以读写,支持增删改查(和切片)操作;元祖 ( ):只读列表,只支 ...
分类:
编程语言 时间:
2018-05-14 21:32:25
阅读次数:
236
Problem: If $a$ is a smooth homogeneous function of degree $m$, show that $$\bex |\dot \lap_ju(x)|\leq C2^{jm}(Mu)(x), \eex$$ where $$\bex (Mf)(x)=\su ...
分类:
其他好文 时间:
2018-05-11 23:16:12
阅读次数:
195
新建maven项目, 在pom.xml中添加 profile节点信息如下: <profiles> <profile> <!-- 开发环境 --> <id>dev</id> <properties> <environment>development</environment><!-- 节点名字envi ...
分类:
其他好文 时间:
2018-05-10 21:40:34
阅读次数:
235
FrameworkServlet是HttpServletBean的子类,实现了HttpServletBean 的 initServletBean 方法。 通过initServletBean()进行WebApplicationContext初始化,其源码为: 其主要的功能就是调用initWebAppl ...
分类:
编程语言 时间:
2018-05-06 18:48:57
阅读次数:
158
#include int main() { while (true) { unsigned tone[] = { 523, 523, 578, 659, 659, 659, 0, 659, 578, 523, 494, 880, 784, 0, 784, 880, 988, 1046, 659, 6... ...
分类:
其他好文 时间:
2018-05-04 17:08:35
阅读次数:
147
IsIconic()作用是判断窗口是否处于最小化状态(点击了最小化按钮之后)。 对于普通的对话框来说,如果你在if (IsIconic()) 下面加入AfxMessageBox("haha") ,你会发现消息框并不会弹出。 原因是,if (IsIconic()) 这段代码是在OnPaint()函数内 ...
We have some permutation A of [0, 1, ..., N - 1], where N is the length of A. The number of (global) inversions is the number of i < j with 0 <= i < j ...
分类:
其他好文 时间:
2018-05-02 23:59:36
阅读次数:
394
ERROR in The node API for `babel` has been moved to `babel-core`. @ multi app 解决方案: ...
C语言malloc函数malloc malloc()动态分配内存存储空间头文件:#include原型:void *malloc(size_t size)参数说明:size为需要分配的内存空间大小,单位是Byte函数说明:在堆区分配一块size Byte大小的内存空间,用于存放数据,这块内存空间被分配... ...
分类:
编程语言 时间:
2018-04-30 18:04:22
阅读次数:
166
beego 安装 1.新建gopath 工程目录 2.在新建的工程目录中执行go get github.com/astaxie/beego 命令 3.再执行go get github.com/beego/bee 下载bee工具 4.这时bee命令是在GOPATH下的bin目录里,如果不把bee配置到 ...
分类:
其他好文 时间:
2018-04-30 14:38:08
阅读次数:
155