- 浏览: 44727 次
- 性别:
- 来自: 深圳
最新评论
文章列表
Chapter 2: Introduction to RPC
This chapter provides an overview of the Remote Procedure Call (RPC) model. For more information refer to your DCE publications.
2.1 Overview
A Remote Procedure Call is a mechanism which enables you to set up communication between the client and the server in a distr ...
- 2009-09-02 16:13
- 浏览 964
- 评论(0)
The answer is simple — understanding the difference between concurrent and parallel. I believe these two terms are often used interchangeably while, in my opinion, they are represent two different concepts.
Let’s start with concurrency. A concurrent program or algorithm is one where operations can o ...
- 2009-08-27 19:45
- 浏览 679
- 评论(0)
A Collection of JVM Options
compiled by: Joseph D. Mocker (Sun Microsystems, Inc.)
revision: 28.Aug.2007
This document is a compilation of all the JVM options for various versions of the JVM on primarily SPARC/Solaris Platform. The descriptions for each option are taken mostly verbatim from the refe ...
- 2009-08-27 19:42
- 浏览 2318
- 评论(0)
http://java.sun.com/developer/technicalArticles/releases/nio/
- 2009-08-24 13:00
- 浏览 637
- 评论(0)
Characters are NOT the same as bytes.
The term character is a logical term (meaning it defines something in terms of the way people think of things). The term byte is a device term (meaning it defines something in terms of the way the hardware was designed). The difference is in the encoding.
Enc ...
- 2009-08-24 12:57
- 浏览 2155
- 评论(0)
Implementing a SoftReference based HashMap
Java is slow. Java is a memory hog.
But, if I have to write a network application, I would not hesitate for a second to use Java. Why? Because Java shines in threaded, network-based applications and because over the years, I have recognised the weaknesses ...
- 2009-08-17 13:20
- 浏览 986
- 评论(0)
Input和Output
1. stream代表的是任何有能力产出数据的数据源,或是任何有能力接收数据的接收源。在Java的IO中,所有的stream(包括Input和Out stream)都包括两种类型:
1.1 以字节为导向的stream
以字节为导向的stream,表示以字节为单 ...
- 2009-07-11 22:43
- 浏览 1426
- 评论(0)