上一页 1 ··· 8 9 10 11 12 13 14 下一页
摘要: The default class viewer doesn't decompile the class file so you cannot open and check the source code, you may down third part App to do that while i 阅读全文
posted @ 2016-10-24 23:25 fysola 阅读(176) 评论(0) 推荐(0)
摘要: IO is a problem difficult to handle in various of systems because it always becomes a bottleneck in data transfer. in this section, I will introduce s 阅读全文
posted @ 2016-10-21 20:57 fysola 阅读(263) 评论(0) 推荐(0)
摘要: I got an issue when copying some line/word (actually just select the context ) in the Linux terminal via SecureCRT, error box popped up with message " 阅读全文
posted @ 2016-10-19 16:42 fysola 阅读(4953) 评论(1) 推荐(0)
摘要: Agenda Three Categories Of Exceptions Exceptions Hierarchy try-catch-finally block The try-with-resources User-defined Exceptions The Throws/Throw Key 阅读全文
posted @ 2016-09-22 01:45 fysola 阅读(530) 评论(0) 推荐(0)
摘要: JAVA的数据类型知识点主要包括基本数据类型,包装类,字符串类(String,StringBuffer, StringBuilder区别和用法),数组,数据类型转换等等,暂时只想到这么多,后面会再补充。 1.基本数据类型 重点是JAVA变量分为原始变量和包装变量,另外变量初始化时要注意变量类型能表示 阅读全文
posted @ 2016-09-07 22:01 fysola 阅读(301) 评论(0) 推荐(0)
摘要: 以下10点为JAVA 基础知识,后面将足以总结和完善以备面试 学完上面知识点后, 计划用一些练习去巩固知识 记事本(java.io, java.nio) 聊天室(多线程,socket, channel, tcp, selector) 通用DAO(反射,JDBC) ... 附录,JAVA其他知识点 J 阅读全文
posted @ 2016-09-06 00:59 fysola 阅读(249) 评论(0) 推荐(0)
摘要: 创建型模型一、简单工厂模式靠 if else 或者 select case 等分支去控制不同对象的创建,难以维护二、工厂方法模式 Factory实现方式:将创建对象的方法定义成一个接口,通过多态的方式创建具体的类。 优点: 如果要添加一个新类,则不需要修改已有的代码。缺点:1.客户端需要知道基类和工厂类,耦合性差2.仅仅适合创建一种类三、 AbstactFactoryFactory的升级版,可以... 阅读全文
posted @ 2015-10-08 22:35 fysola 阅读(265) 评论(0) 推荐(0)
摘要: // sort.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include using namespace std;void print ( int a[] ,int n ){ for ( int i=0;i a[j] ) { int tmp = a[i]; a[i] =... 阅读全文
posted @ 2015-10-08 22:32 fysola 阅读(187) 评论(0) 推荐(0)
摘要: // sort.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include using namespace std;void print ( int a[] ,int n ){ for ( int i=0;i a[j] ) { int tmp = a[i]; a[i] =... 阅读全文
posted @ 2015-10-08 22:32 fysola 阅读(138) 评论(0) 推荐(0)
摘要: // list.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include using namespace std;typedef struct list_node { int data; list_node *left; list_node *right;} Node;Node *... 阅读全文
posted @ 2015-10-08 22:32 fysola 阅读(186) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 下一页