OO思想现在已经在软件开发项目中广泛应用,其中最重要的一个特性就是继承,最近偶简单的学习了下在设计模式中涉及到继承这个特性时,所需要用到的关键字,其中有一些关键点,特地整理出来。
    一、New
    在C#中,new这个关键字使用频率非常高,主要有3个功能:    
    a)   作为运算符用来创建一个对象和调用构造函数。
    b)   作为修饰符。
    c)   用...
                            
                            
                                分类:
其他好文   时间:
2014-05-01 22:17:38   
                                阅读次数:
303
                             
                    
                        
                            
                            
                                1.1  安装TOMCAT与JDK
第1步:新建boss用户,用户名:boss,密码:bossnyl
第2步:将安装用户路径设置成/app/boss
[root@localhost]# useradd-d /app/boss -m boss
[root@localhost]# passwdboss
Changing password for user boss.
New passwor...
                            
                            
                                分类:
系统相关   时间:
2014-05-01 18:10:53   
                                阅读次数:
589
                             
                    
                        
                            
                            
                                用c语言实现
#include 
#include 
#include 
using namespace std;
typedef struct node
{
    char x;
    struct node *next;
}chan;
chan *root = new chan;
char a[100010];
int main()
{
    while(scanf("%...
                            
                            
                                分类:
编程语言   时间:
2014-04-29 13:47:20   
                                阅读次数:
358
                             
                    
                        
                            
                            
                                Our chemical biologists have invented a new very useful form of life called stripies (in fact, they were first called in Russian - polosatiki, but the scientists had to invent an English
 name to app...
                            
                            
                                分类:
其他好文   时间:
2014-04-29 13:45:22   
                                阅读次数:
309
                             
                    
                        
                            
                            
                                #生成excel
#ljl
use Spreadsheet::WriteExcel; 
my %us;
while(($key, $value) = each %us){
	print "$key|$value\n";
}
 # 创建一个新的EXCEL文件  
  my $workbook = Spreadsheet::WriteExcel->new('poi_count_top15....
                            
                            
                                分类:
其他好文   时间:
2014-04-29 13:33:21   
                                阅读次数:
327
                             
                    
                        
                            
                            
                                1.获取代表控件的对象
2.定义一个类,实现监听器接口
3.生成监听器对象
4.为控件绑定监听器对象
        button1 = (Button)findViewById(R.id.button1);	//获取XMl中控件id
        button1.setOnClickListener(new OnClickListener()	//生成监听器对象并且直接...
                            
                            
                                分类:
移动开发   时间:
2014-04-29 13:32:21   
                                阅读次数:
364
                             
                    
                        
                            
                            
                                Aggressive cows
Time Limit: 1000MS
 
Memory Limit: 65536K
Total Submissions: 5436
 
Accepted: 2720
Description
Farmer John has built a new long barn, with N (2 <= N <= 100,...
                            
                            
                                分类:
其他好文   时间:
2014-04-29 13:22:21   
                                阅读次数:
304
                             
                    
                        
                            
                            
                                The blonde Angela has a new whim: internet chats. Of course, as any blonde, she writes her messages using the upper case. You are the moderator of Angela's favorite chat and you're fed up with her upp...
                            
                            
                                分类:
其他好文   时间:
2014-04-29 13:17:21   
                                阅读次数:
293
                             
                    
                        
                            
                            
                                新浪sae的官方说明文档:http://apidoc.sinaapp.com/sae/SaeMysql.html
Class SaeMysql 具体实现:http://apidoc.sinaapp.com/__filesource/fsource_sae__saemysql.class.php.html
新浪官方文档已经给出了简单的示例:
<?php
$mysql = new Sae...
                            
                            
                                分类:
数据库   时间:
2014-04-29 13:14:20   
                                阅读次数:
407
                             
                    
                        
                            
                            
                                1.段寄存器
8086CPU有4个段寄存器:CS、DS、SS、ES。当8086CPU访问内存时,由这4个段寄存器提供内存单元的段地址。
CS和IP是8086中最关键的寄存器,他们指示了CPU当前要读取指令的地址。CS是代码段寄存器,IP为指令指针寄存器。在8086PC机中,任意时刻,设CS中的内容是M,IP中的内容是N,8086CPU将从内存地址:M*16+N处读取指令并执行。也可以这...
                            
                            
                                分类:
其他好文   时间:
2014-04-29 13:13:21   
                                阅读次数:
333