读书笔记
文章平均质量分 80
LmbdInf
学习造轮子。。。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C++ GUI Qt4编程笔记1
#include #include #include #include int main(int argc, char *argv[]){ QApplication app(argc, argv); QWidget *window = new QWidget; window->setWindowTitle("Enter Your Age"); QSp原创 2014-09-26 22:17:24 · 998 阅读 · 0 评论 -
python核心编程读书笔记
python笔记(python 核心编程)python2.7为主,ipython和pyCharm1.输入输出和字符串(在2.x中print后面的是整体,比如()、[],总之2.x不要加()也不是函数只是一个语句) print,input 不回车 python 2.x:print x, python 3.x:print(x, end="") 同时原创 2015-08-24 16:01:23 · 822 阅读 · 0 评论 -
java swing示例(计算器)
java核心技术卷一-第九章例9-1(计算器)/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in th原创 2015-01-14 19:51:43 · 836 阅读 · 0 评论 -
pydev django示例
#urls.pyfrom django.conf.urls import include, urlfrom django.contrib import adminurlpatterns = [ # Examples: # url(r'^$', 'mysite.views.home', name='home'), # url(r'^blog/', include('原创 2014-12-13 12:47:47 · 935 阅读 · 0 评论 -
html参考
HTML Basic DocumentDocument name goes hereVisible text goes hereText ElementsThis is a paragraph (line break) (horizontal rule)This text is preformattedLogical StylesT转载 2014-12-12 21:12:16 · 623 阅读 · 0 评论 -
java文件读写(输入输出流)
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */package filete原创 2015-01-15 12:52:37 · 808 阅读 · 0 评论 -
oracle笔记
Oracle数据库的各种物理结构,包括数据文件(datafile)、重做日志文件(redo log files)、和控制文件(control files)。每个Oracle数据库使用一个或多个物理的数据文件(datafile)。数据文件中包含所了有的数据库数据。按表、索引等逻辑数据库结构组织的数据存储在数据库的数据文件中。数据文件的特点有:一个数据文件只能属于一个数据库原创 2015-01-05 22:12:23 · 630 阅读 · 0 评论 -
正则表达式
字符 描述\将下一个字符标记为一个特殊字符、或一个原义字符、或一个 向后引用、或一个八进制转义符。例如,'n' 匹配字符 "n"。'\n' 匹配一个换行符。序列 '\\' 匹配 "\" 而 "\(" 则匹配 "("。^匹配输入字符串的开始位置。如果设置了 RegExp 对象的 Multiline 属性,^ 也匹配 '\n' 或 '\r' 之后的位置。转载 2014-11-18 21:59:10 · 490 阅读 · 0 评论 -
django配置
首先安装python。下载django,解压到任意位置,原创 2014-11-10 16:07:14 · 746 阅读 · 1 评论 -
sql笔记
一.关系代数原创 2014-10-23 13:07:00 · 561 阅读 · 0 评论 -
自己动手写操作系统笔记之helloworld
org 07c00h mov ax, cs mov ds, ax mov es, ax call DispStr jmp $DispStr: mov ax, BootMessage mov bp, ax mov cx, 16 ;CX=串长度 mov ax, 01301h mov bx, 000ch ;页号为0(BH=0) 黑底红字(BL=0ch,高原创 2015-09-15 19:15:53 · 1621 阅读 · 0 评论
分享