码迷,mamicode.com
首页 >  
搜索关键字:c primer plus 第五章 编程练习    ( 7061个结果
Esfog_UnityShader教程_NormalMap法线贴图
摘要: Esfog_UnityShader教程的第五章,这一章中我们讲述了法线贴图的原理,使用方法,以及在Shader中的实现方式.
分类:其他好文   时间:2014-05-20 12:35:48    阅读次数:307
SHELL调用存储过程
1、测试用例 #!/bin/sh #日期变量可设成传入参数 #exec_date=`date +"%Y%m%d"` # -S 设置无提示模式, 该模式隐藏命令的 SQL*Plus 标帜, 提示和回显的显示 sqlplus -S "scott/oracle" /dev/null declare --声...
分类:其他好文   时间:2014-05-19 16:10:18    阅读次数:432
SQL*Plus和PL/SQL
1. SQL*Plus登陆:在cmd中,使用sqlplus [usernam]/[pwd]或者sqlplus [usernam]/[pwd] as sysdba或者sqlplus [usernam]/[pwd]@[netsvr],netsvr是已定义的网络服务名。2. 获得帮助索引:help ind...
分类:数据库   时间:2014-05-19 13:32:55    阅读次数:439
oracle expdp 无法导出SYS下特定TABLE
创建测试表:D:\app\product\11.1.0\db_1>sqlplus "/as sysdba"SQL*Plus: Release 11.1.0.7.0 - Production on 星期日 5月 18 17:12:06 2014Copyright (c) 1982, 2008, Ora...
分类:数据库   时间:2014-05-19 13:23:49    阅读次数:473
IOS Core Animation Advanced Techniques的学习笔记(四)
第五章:Transforms...
分类:移动开发   时间:2014-05-18 18:47:43    阅读次数:534
C++ Primer 学习笔记_74_面向对象编程 --再谈文本查询示例[续/习题]
面向对象编程--再谈文本查询示例[续/习题]//P522 习题15.41 //1 in TextQuery.h #ifndef TEXTQUERY_H_INCLUDED #define TEXTQUERY_H_INCLUDED #include #include #include #include #include #include #include #include usin...
分类:编程语言   时间:2014-05-18 18:41:59    阅读次数:454
C++ Primer 学习笔记_75_模板与泛型编程 --模板定义
模板与泛型编程--模板定义引言: 所谓泛型程序就是以独立于任何特定类型的方式编写代码。使用泛型程序时,我们需要提供具体程序实例所操作的类型或值。 模板是泛型编程的基础。使用模板时可以无须了解模板的定义。 泛型编程与面向对象编程一样,都依赖于某种形式的多态性。面向对象编程中的多态性在运行时应用于存在继承关系的类。我们能够编写使用这些类的代码,忽略基类与派生类之间类型上的差异。只要使用基类的引用或指针...
分类:编程语言   时间:2014-05-18 07:23:00    阅读次数:344
C++ Primer 学习笔记_73_面向对象编程 --再谈文本查询示例
面向对象编程--再谈文本查询示例引言: 扩展第10.6节的文本查询应用程序,使我们的系统可以支持更复杂的查询。 为了说明问题,将用下面的简单小说来运行查询: Alice Emma has long flowing red hair. Her Daddy says when the wind blows through her hair, it looks almost alive, l...
分类:编程语言   时间:2014-05-18 04:15:13    阅读次数:564
C++ PRIMER 第九章
顺序容器:vector list deque顺序容器适配器: stack queue priority_quequ(没见过,第一轮不管)C c; C c(c2); C c(b,e) ///b e 都是迭代器; c(n,t)///只用于顺序容器; C c(n) ///只用于顺序容器const list...
分类:编程语言   时间:2014-05-17 23:43:37    阅读次数:471
C++ primer 第十章
关联容器,完全没用过,一直想用,FUC,本文只介绍初级使用方式,不能贪多#include#include#include#includeusing namespace std;typedef pair Auth;int main(){ map m; set s; Auth p1,p2,p3,p4; ...
分类:编程语言   时间:2014-05-17 22:46:09    阅读次数:358
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!