码迷,mamicode.com
首页 >  
搜索关键字:public    ( 82854个结果
工厂模式
1.普通工厂模式package CommonFactory;public class Test { public static void main(String[] args) { VehicleFactory factory = new CarFactory(); ...
分类:其他好文   时间:2014-04-28 04:46:43    阅读次数:427
引用对象做向上转换,但对虚函数不影响使用
//: WIND2.CPP -- Inheritance & upcasting#include enum note { middleC, Csharp, Cflat }; // Etc.class instrument {public: void play(note) const { // ...
分类:其他好文   时间:2014-04-28 01:35:42    阅读次数:1272
java集合
ArrayList:public class ArrayListextends AbstractListimplements List, RandomAccess, Cloneable, SerializableList 接口的大小可变数组的实现。实现了所有可选列表操作,并允许包括 null 在内的...
分类:编程语言   时间:2014-04-28 01:31:46    阅读次数:834
C#之委托与事件
委托与事件废话一堆:网上关于委托、事件的文章有很多,一千个哈姆雷特莎士比亚就有一千个莎士比亚,以下内容均是本人个人见解。1. 委托1.1 委托的使用 这一小章来学习一下怎么简单的使用委托,了解一些基本的知识。 这里先看一下其他所要用到的类的信息 /// /// 函数用例 /// public...
分类:其他好文   时间:2014-04-28 00:58:29    阅读次数:435
提问:"~"运算符
本人有一段代码关于"~"运算符 public class m{ public static void main(String[] args){ int x=~5; System.out.println(x); ...
分类:其他好文   时间:2014-04-28 00:48:41    阅读次数:326
第一条:考虑用静态工厂代替构造器
对于类而言,为了让使用者获取它自身的一个实例,最常见的方法就是提供一个公有的构造器。但是有一种方法,他就是静态工厂方法(static factory method),它只返回类的实例的静态方法。比如说我们所有的基本类型的封装类中的valueOf()方法1 public static Boolean ...
分类:其他好文   时间:2014-04-28 00:34:52    阅读次数:452
宏函数定义继承类
//: ORDER.CPP -- Order of constructor calls // with inheritance#include #define inherit(derived, base) \class derived : public base { \public: \ deri....
分类:其他好文   时间:2014-04-28 00:09:24    阅读次数:444
GlusterFS源码解析 —— GlusterFS日志解析
Logging.c: /* Copyright (c) 2008-2012 Red Hat, Inc. This file is part of GlusterFS. This file is licensed to you under your choice of the GNU Lesser General Public License, version 3 or any...
分类:其他好文   时间:2014-04-27 18:57:31    阅读次数:702
万能的函数 之 接口继承 实现继承~~~
在public继承中,(public 继承表示的关系是 “is  a ” 的关系),其类中定义的函数主要有三类:pure virtual函数,impure virtual函数以及non-virtual函数,这三种函数决定了public继承中的两个重要概念 : “ 函数接口继承” 以及 “函数实现继承”。那么接下来将针对这样一个不简单的问题做一些简介。 考虑如下的类定义: class Shape...
分类:其他好文   时间:2014-04-27 18:29:13    阅读次数:526
java合并两段音频成一段 同时播放类似伴奏
/** * * @param partsPaths 要合成的音频路径数组 * @param unitedFilePath 输入合并结果数组 */ public void uniteWavFile(String[] partsPaths, String unitedFilePath) { byte byte1[] = getByte(partsPaths[0]); ...
分类:编程语言   时间:2014-04-27 17:39:03    阅读次数:556
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!