`
文章列表
原文:http://cnmtjp.blog.51cto.com/204390/36548     第一:private, public, protected 访问标号的访问范围。 private:只能由1.该类中的函数、2.其友元函数访问。 不能被任何其他访问,该类的对象也不能访问。 protected:可以被1.该类中的函数、2.子类的函数、以及3.其友元函数访问。 但不能被该类的对象访问。 public:可以被1.该类中的函数、2.子类的函数、3.其友元函数访问,也可以由4.该类的对象访问。   注:友元函数包括3种:设为友元的普通的非成员函数;设为友元的其他类的成员 ...
钱能C++ P280~P283 #include <iostream.h> #include <string.h> class StudentID { public: StudentID(int id = 0) { value = id; cout << "StudentID 构造时 id " << value << endl; } ~StudentID() { cout << & ...
Select SITE,REACINFO From TblWorldCupReac Where To_char(REACDATE,'yyyy-mm-dd') = To_char(sysdate,'yyyy-mm-dd') And SITE > 0 And rownum < 2; Select SITE,REACINFO From ( Select SITE,REACINFO From TblWorldCupReac Where To_char(REACDATE,'yyyy-mm-dd') = To_char(sysdat ...
http://baike.baidu.com/view/837392.htm?fr=ala0_1_1
asctimetime函数的文本格式版本clock返回自程序开始运行所经过的时间ctime返回特定格式时间difftime两时刻的间隔gmtime返回指向当前格林威治时间的指针localtime返回指向当前时间的指针mktime返回指定时间的日历格式setlocale设置当前的localestrftime返回日期和时间的单个元素time返回系统的当前日历时间 struct tm结构 ---- tm_hourHours since midnight (0–23) tm_isdstPositive if daylight saving time is in effect; tm_mdayDay o ...
#include <iostream> using namespace std; int main(int argc,char *argv[]) { stringstream sstrm; sstrm << 123; cout << sstrm.str(); return 0; } #include <string> #include <sstream> #include <iostream> using ...

随机数rand

#include <stdlib.h> #include <string> #include <iostream> using std::cout; using std::cin; using std::endl; using std::string; int main(int argc,char *argv[]) { srand((int)time(0)); for(int i = 0;i <= 10;i++) { cout << rand()%101 ...
原文地址:http://www.blogkid.net/archives/2668.html     cURL是我在Linux上经常用的一个小工具,我理解它是一个“客户端”。今天记录一下我的使用心得。达人请忽略。 cURL是一个利用URL语法在命令行方式下工作的文件传输工具。它支持很多协议:FTP,  FTPS,  HTTP, HTTPS, GOPHER等。[更多...]   场景一:测试域名绑定 我常需要在开发环境中,测试某台服务器上的Web Server是否正确绑定了域名。   比如,我希望在服务器192.168.1.10上绑定www.blogkid.net。但需要修改 ...

Field类

java.lang.reflect.Field
原文:http://blog.blueshop.com.tw/pili9141/articles/52486.aspx http://xiaona.iteye.com/blog/50717 作者整理得很工整啊!建议看原文。 可惜没写To_date(),不过有To_char()就可以看见To_date()了。 -------------------------------------------------- SYSDATE --◎ 可得到目前系統的時間      select sysdate from dual;     sysdate       ----------       ...
原文:http://hi.baidu.com/wangyuquansky/blog/item/319ce0903b98638aa877a425.html printf命令, 格式化输出, 是echo命令的增强版. 它是C语言printf()库函数的一个有限的变形, 并且在语法上有些不同. printf format-string... parameter... 这是Bash的内建版本, 与 ...
原文:http://blog.csdn.net/snlying/archive/2008/09/05/2887543.aspx   http://zhicongluo.spaces.live.com/blog/cns!CDC8D8834BF6354D!268.entry     关于使用大括号初始化class和struct如果定义了构造函数的话,都不能用大括号进行初始化如果没有定义构造函数,struct可以用大括号初始化。如果没有定义构造函数,且所有成员变量全是public的话,可以用大括号初始化。 关于默认访问权限 class中默认的成员访问权限是private的,而struct ...

python__init

http://blog.sina.com.cn/s/articlelist_1647850892_6_1.html BIF : Built-In Functions dir(__builtins__) help(function_name) for path in sys.path : path 打包 推导列表。。擦语法糖xx list_2 =  [k++ for k in list_1] http://python.itcarlow.ie/ http://www.headfirstlabs.com/books/hfpython/
原文:http://blog.sina.com.cn/s/blog_6238358c0100h1kw.html 1.配置文件 /etc/hosts(本地主机ip地址映射,可以有多个别名)。 /etc/services(端口号与标准服务之间的对应关系)。 /etc/sysconfig/network(设置主机名,网关,域名)。 HOSTANME=zjw.com(主机 ...
原文:http://blog.sina.com.cn/s/blog_6238358c0100gk7r.html   RE 字符 意义与范例 ^word 待搜寻的字串(word)在行首! 范例∶grep -n '^#' regular_express.txt搜寻行首为 # 开始的那一行! word$ 待搜寻的字串(word)在行尾! 范例∶grep -n '!$ ...
Global site tag (gtag.js) - Google Analytics