码迷,mamicode.com
首页 >  
搜索关键字:surface book    ( 5453个结果
编译原理三大经典书籍
1、龙书(Dragon book)英文名:Compilers: Principles,Techniques,and Tools作者:Alfred V.Aho,Ravi Sethi,Jeffrey D.Ullman中文名:编译原理技术和工具2、虎书(Tiger book)英文名:Modern Comp...
分类:其他好文   时间:2014-07-26 17:12:11    阅读次数:359
[SICP Notes] 1.1 The Elements of Programming
About the Book To know more about programming, I have decided to start reading the famous Structure and Interpretation of Computer Programs (SICP, or the Wizard Book), which is first published by M...
分类:其他好文   时间:2014-07-26 15:32:35    阅读次数:349
【足迹C++primer】54、继承类的范围,构造函数和拷贝控制
继承类的范围,构造函数和拷贝控制 当用派生类执行函数的时候,首先会在当前的类里面找 如果找不到就一级一级地往上找。 Name Lookup Happens at Compile Time class Quote { public: Quote()=default; Quote(const string &book, double sales_price)...
分类:编程语言   时间:2014-07-26 15:29:42    阅读次数:542
angular学习之directive
Angular对directive的定义是一段代码片段,你 可以用它来操作DOM使用directive可以实现事件的绑定module.directive( "addBookButton", [ 'Book', function( Book ) { return { restric...
分类:其他好文   时间:2014-07-24 22:17:12    阅读次数:193
mysql 加入?列,改动列,删除列。
MySQL 加入?列,改动列,删除列ALTER TABLE:加入?,改动,删除表的列,约束等表的定义。查看列:desc 表名;改动表名:alter table t_book rename to bbb; 加入?列:alter table 表名 add column 列名 varchar(30); 删...
分类:数据库   时间:2014-07-24 14:42:45    阅读次数:232
hdu1075What Are You Talking About (字典树)
Problem Description Ignatius is so lucky that he met a Martian yesterday. But he didn't know the language the Martians use. The Martian gives him a history book of Mars and a dictionary when it leave...
分类:其他好文   时间:2014-07-23 22:33:38    阅读次数:281
URAL 1033 Labyrinth(DFS)
Administration of the labyrinth has decided to start a new season with new wallpapers. For this purpose they need a program to calculate the surface area of the walls inside the labyrinth. This job ...
分类:其他好文   时间:2014-07-23 22:32:07    阅读次数:292
mongodb用户管理简单记录
Mongodb用户分为三种1、全局用户2、数据库对应用户3、只读用户查看所有的数据库>showdbs admin0.078GB book_blog0.078GB local0.078GB mydb0.078GB newdb0.078GB test0.078GB查看现有所有的有哪些用户,要切换到admin数据库中>useadmin switchedtodbadmin >db.system...
分类:数据库   时间:2014-07-23 21:23:26    阅读次数:433
wxPython学习资料
[译]wxPython布局管理简介https://www.pystack.org/wxpython_sizer/设计器、代码分离http://book.douban.com/review/5780362/使用wxFormBuilderhttp://www.cppblog.com/xkjy3000/a...
分类:编程语言   时间:2014-07-23 20:18:55    阅读次数:234
动态代理的实现过程
定义被代理对象的接口和接口实现:1 package com.xl;2 public interface Book {3 4 public void addBooks();5 }View Code 1 package com.xl; 2 3 public class BookImpl...
分类:其他好文   时间:2014-07-23 12:47:06    阅读次数:167
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!