一、通配符 通配符描述示例 %:匹配包含零个或更多字符的任意字符串。WHERE title LIKE '%computer%' 将查找处于书名任意位置的包含单词 computer 的所有书名。 _(下划线):匹配任何单个字符。WHERE au_fname LIKE '_ean' 将查找以 ean 结 ...
分类:
数据库 时间:
2018-02-13 13:33:39
阅读次数:
221
Markdown - Syntax # Cmd Markdown 简明语法手册 标签: Cmd-Markdown ### 1. 斜体和粗体 使用 * 和 ** 表示斜体和粗体。 示例: 这是 *斜体*,这是 **粗体**。 ### 2. 分级标题 使用 表示一级标题,使用 表示二级标题。 示例: ` ...
分类:
其他好文 时间:
2018-02-12 20:07:16
阅读次数:
181
接口体现的是一种实现和规范分离的设计哲学,利用接口可以降低程序各个模块之间的耦合性,从而提高系统的可扩展性和可维护性。 其中一种模式是简单工厂模式。 设想一个场景,一台Computer要有一组输出设备。一般有两种解决方案,一种是直接与输出设备耦合,及直接组合一个Printer,这样 Computer ...
分类:
其他好文 时间:
2018-02-11 23:38:58
阅读次数:
176
数据结构是什么? 维基百科说: Data structure(https://en.wikipedia.org/wiki/Data_structure) In computer science, a data structure is a particular way of organizing a ...
分类:
其他好文 时间:
2018-02-11 21:27:39
阅读次数:
146
A number of schools are connected to a computer network. Agreements have been developed among those schools: each school maintains a list of schools t ...
分类:
Web程序 时间:
2018-02-11 12:25:41
阅读次数:
204
Java End-of-file by Shafaet Problem Submissions Leaderboard Discussions Editorial Java End-of-file by Shafaet Java End-of-file by Shafaet Java End-of- ...
分类:
编程语言 时间:
2018-02-09 20:49:37
阅读次数:
337
传送门 二分,正反都扫一遍不连续K个不符条件即可 ...
分类:
其他好文 时间:
2018-02-08 20:23:38
阅读次数:
427
Accounting for Computer Machinists (ACM) has sufferred from the Y2K bug and lost some vital data for preparing annual report for MS Inc. All what they ...
分类:
其他好文 时间:
2018-02-08 19:59:01
阅读次数:
157
计算机的世界,版本号(version)无处不在,不管是发布的软件、产品,还是协议、框架。那什么是版本号呢 在这里是这样定义的: Software versioning is a way to categorize the unique states of computer software as i ...
分类:
其他好文 时间:
2018-02-06 11:06:03
阅读次数:
190
在上一节的案例中,我们使用了四个Buffer Object,立方体的VertexBuffer,立方体的索引Buffer,四面体的VertexBuffer,四面体的索引Buffer。 我们这节尝试把两个图形的Vertex Buffer结合,两个图形的索引Buffer结合,形成两个Buffer,让程序更 ...