什么是gcc / g++ 首先说明:gcc 和 GCC 是两个不同的东西 GCC:GNU Compiler Collection(GUN 编译器集合),它可以编译C、C++、JAV、Fortran、Pascal、Object-C、Ada等语言。 gcc是GCC中的GUN C Compiler(C 编 ...
分类:
其他好文 时间:
2019-01-06 22:31:21
阅读次数:
228
public boolean isAllowable() { long now = System.currentTimeMillis(); if (now > lastResetTime + interval) { token.set(rate); lastResetTime = now; } in ...
分类:
其他好文 时间:
2019-01-06 14:30:43
阅读次数:
225
具体问题点 分析:json格式的字符串中key包含'_' 解决方案:去掉'_' 或者将可以用引号包起来 ...
分类:
Web程序 时间:
2019-01-06 00:33:39
阅读次数:
4917
前言 相信很多人都看过下面这张图,(来自《深入理解Java虚拟机:JVM高级特性与最佳实践》) 在学完几种垃圾收集器类型及组合后,打算看看实际中程序用到的垃圾收集器。 但是在jconsole中看到的,如下: 两边的名称并不完全匹配,给我造成了很多困惑之处。 实际上,jconsole里面用到的,我想应 ...
分类:
其他好文 时间:
2019-01-05 15:14:01
阅读次数:
190
日历(QCalendarWidget)+爬虫API调用+自定义发送信号(传入2个参数) 总体介绍 QCalendarWidget类提供了一个基日历小部件,允许用户选择一个日期。 该小部件使用当前的月份和年份进行初始化,但是QCalendarWidget提供了几个公共槽函数来更改显示的年份和月份。 默 ...
分类:
其他好文 时间:
2019-01-04 22:35:49
阅读次数:
259
在讲atomic原子类之前先看一个小例子: public class UseAtomic { public static void main(String[] args) { AtomicInteger atomicInteger=new AtomicInteger(); for(int i=0;i ...
分类:
编程语言 时间:
2018-12-30 22:16:47
阅读次数:
236
mybatis generate使用 第一步导入依赖 第二步配置 mybatis generator config.xml 第三步 使用插件编译 第四步 保持表中字段命名方式 ...
分类:
其他好文 时间:
2018-12-29 13:55:50
阅读次数:
182
"Currency Exchange" Time Limit: 2 Seconds Memory Limit: 65536 KB When Issac Bernand Miller takes a trip to another country, say to France, he exchange ...
分类:
其他好文 时间:
2018-12-22 12:01:39
阅读次数:
137
call/cc 总结 | Scheme 来源 https://www.sczyh30.com/posts/Functional-Programming/call-with-current-continuation/ Continuation Continuation 也是一个老生常谈的东西了,我们来 ...
分类:
其他好文 时间:
2018-12-22 01:07:12
阅读次数:
243
题目描述 Goldbach's Conjecture: For any even number n greater than or equal to 4, there exists at least one pair of prime numbers p1 and p2 such that n = ...
分类:
数据库 时间:
2018-12-19 14:16:12
阅读次数:
192