一、PL/SQL代码块DECLARE(可以不是用此块) ;BEGIN ;END;在SQL Plus执行需要在代码块最后/,并且单独占一行。DBMS_OUTPUT.PUT_LINE();用于输出内容,类似于C的printf,C++的cout。二、PL/SQL注释行注释(一行):--。块注释(多行):/...
分类:
数据库 时间:
2015-04-15 19:34:18
阅读次数:
148
总结数据处理帖子http://blog.csdn.net/linhuanmars/article/details/39046243这道题看似简单,但是有个优化必须要考虑到,就是如果没有进位,则应该立即返回public class Solution { public int[] plusOne(...
分类:
其他好文 时间:
2015-04-15 08:24:19
阅读次数:
132
火狐浏览器屏蔽优酷广告火狐浏览器屏蔽优酷广告安装 Adblock plus右键视频global setting (全局设置)delete all (全部删除)
分类:
其他好文 时间:
2015-04-15 00:58:02
阅读次数:
128
今天看到《C++Primer》上写*p++等价于先运算p++然后再进行解引用计算,想了一会儿,又去网上查了查,不过发现说法不一,还有争论得不可开交的...
于是,本人默默的打开了VS...
还是亲测一下最好
#include "stdafx.h"
#include
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
...
分类:
其他好文 时间:
2015-04-13 20:56:32
阅读次数:
123
1、动画效果实现参考的网址 泡在网上的日子:http://www.jcodecraeer.com/plus/list.php?tid=31&codecategory=500 (不同的动画效果,分类很好,便于搜索) github:https://github.com/Trinea/andr...
分类:
移动开发 时间:
2015-04-13 20:46:42
阅读次数:
139
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:
其他好文 时间:
2015-04-13 08:15:12
阅读次数:
116
1、上传安装包2、解压安装包3、检查是否开启归档(开启归档)sourcedb-> sqlplus / as sysdbaSQL*Plus: Release 11.2.0.4.0 Production on Mon Apr 13 00:58:03 2015Copyright (c) 1982, 201...
分类:
其他好文 时间:
2015-04-12 18:58:28
阅读次数:
229
C++Primer后面的高级特性看不下去,重新找了一本数据结构的书来看,加油!!书名叫《数据结构算法与C++语言描述》!基本完成插入,查找,删除,打印,哦,对了,那个operator//using namespace std;templateclass LinearList{ public: Lin...
分类:
其他好文 时间:
2015-04-12 09:07:20
阅读次数:
119
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:
其他好文 时间:
2015-04-11 22:26:13
阅读次数:
187
C++里面vector好像越来越成为取代数组的利器,具体区别详参C++ primer plus.今天写程序用到了这个东西,试水之后发现很多问题,特别是因为capacity和size的问题困扰了一天,虽然问题很stupid,还是把关于vector的介绍整理如下,希望用到改工具的人少走弯路:
一:什么是容器[1](文章援引已注明,请尊重原创作者):
vector是C++标准模板库中的部分内...
分类:
其他好文 时间:
2015-04-11 00:04:30
阅读次数:
213