ps -eo pid,lstart|grep [pid] 命令解释: -e Select all processes. -o,o Specify user-defined format. pid a number representing the process ID (alias tgid). l ...
分类:
系统相关 时间:
2016-08-06 08:31:47
阅读次数:
196
Item 07-为多态基类声明virtual析构函数
Declare destructors virtual in polymorphic base class
why? http://blog.csdn.net/wxqian25/article/details/7361069
Ex: 记录时间有多种做法,一个基类和一些派生类
class TimeKeeper{ ...
分类:
编程语言 时间:
2016-08-05 17:57:20
阅读次数:
224
首先给出《The_C_Programming_Language》这本书中的例子: 这里主要解释下为什么要用int型来接受getchar函数。 很多时候,我们会写这样的两行代码: 这样就很有可能出现问题。因为getchar函数除了返回终端输入的字符外,在遇到Ctrl+D(Linux下)即文件结束符EO ...
分类:
系统相关 时间:
2016-08-01 00:14:44
阅读次数:
778
问题链接:HDU1196 Lowest Bit。入门训练题,用C语言编写程序。
这个问题从1开始逐步试探即可,然后是:2,4,8,16,......。每次左移1位即可。
AC程序如下:
/* HDU1196 Lowest Bit */
#include
int main(void)
{
int a, v;
while(scanf("%d", &a) != EO...
分类:
其他好文 时间:
2016-07-13 16:15:09
阅读次数:
136
本次使用的具体软件是:Jdeveloper12.13C,ADFruntime12.13,weblogic12.13,oracle12c数据库。首先下载ADFruntime12.13并安装它:安装好了ADR,则需要先创建RCU:创建好RCU后,开始创建weblogic的域:创建好域后,则开启weblogic并把ADF项目的ear发布到weblogic中:
分类:
Web程序 时间:
2016-06-10 15:04:06
阅读次数:
780
09.01_面向对象(多态的概述及其代码体现)A:多态(polymorphic)概述
事物存在的多种形态
B:多态前提
a:要有继承关系。
b:要有方法重写。
c:要有父类引用指向子类对象。
C:案例演示
代码体现多态public class Demo1_polymorphic {
/**
* 成员变量:编译时看左边(父类),运行时看左边(父类)
* 成员方...
分类:
其他好文 时间:
2016-06-03 19:18:20
阅读次数:
128
1.Unknown column 'Extent1.Discriminator' in 'field list' Resole:http://blog.csdn.net/philip502/article/details/16350809 http://blog.csdn.net/gentle_wo ...
分类:
Web程序 时间:
2016-05-06 20:19:07
阅读次数:
184
if-statements can add serious complexity and beg for refactoring. You can use polymorphic functions to simplify your ifs and dynamically call the appr ...
分类:
编程语言 时间:
2016-04-24 06:07:13
阅读次数:
139
对于新手来说,有些时候会遇到VO中的Attribute的各种问题; 总结如下:1,你页面上输入了值,但是点击保存之后值并不能存到数据库,这个是因为该字段在VO中不是基于EO的 2,你将一个VO中的EO去掉,然后将一个没有问题的SQL放入到VO中点击应用,这个时候你会发现Vo中的Attribute并没 ...
分类:
其他好文 时间:
2016-04-23 17:58:09
阅读次数:
105
1. 2. 3. 4. 5. 6. 7. 8. 9. 10.
分类:
Web程序 时间:
2016-03-20 19:17:20
阅读次数:
206