自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(17)
  • 收藏
  • 关注

股票操作经验(教训)谈

买卖股票时,会有多个理由,但是不同理由的权重是不同的。买股票时,如果有一个理由不成立,就不能够买进。卖股票时,如果最重要的理由不存在了,就要及时的卖出。检讨: 在目前的操作过程中,就是忽视了最重要的K线形态和均线系统技术形态走坏这个因素,没有及时的卖出股票而导致套牢。而只是关注Topview和DDE的数据了。实际上 Topview和DDE系统应该只是辅助性的。 还有...

2008-02-03 13:57:29 692

2007年沪市上涨前20与后20

2008-1-11 代码 名称 2007 2006 2005 2004 2003 净资产收益率1 '600837' 海通证券 898.55% 31.92% 16.56% 57.17% -3.08% 45.40%2 '600385' *ST金泰 761.06% 64.27% -8.93% -49.09% -61.72% 3 '600158' 中体产业 753.68% 138.27% -1...

2008-01-13 20:13:25 1012

交大软件工程老师语录

一些小朋友连婚都没有结,学什么项目管理!世界上哪里见过全是Girl的软件公司?将来生了Baby,也要和儿子沟通嘛,所以每个Team里面必须要有1名Girl!(林老师规定的组建Team的要求之一)Robert Martin身为著名软件工程大师居然也去鼓吹XP,我们认为他应该呆在意大利唱Opera的,他却唱起了Rock&Roll!有了Contract,就有了benefit和respon...

2006-07-25 10:43:00 205

Fwd: Re: What does this construct mean?

-------------------- Start of forwarded message --------------------From: Devin Mullins <twifkak@comcast.net>Newsgroups: comp.lang.rubySubject: Re: What does this construct mean?Date: Sat, 16 Ju...

2006-07-17 10:58:00 132

Fwd: Re: Exececuting another application from within ruby

-------------------- Start of forwarded message --------------------From: "Ara.T.Howard" <Ara.T.Howard@noaa.gov>Newsgroups: comp.lang.rubySubject: Re: Exececuting another application from within...

2006-07-05 15:01:00 139

Event Mode

在OPTS中,事件处理原理主要有以下几个方面 事件的触发(事件源):一般是用户对UI的操作产生的触发,如customDispatcher.onICustomEvent(CustomEvent) 事件的注册(事件侦听器):一般地,在UI组件初始化的时候,会注册事件的侦听。在OPTS中,一般采用一个Singleton的方式来处理对一类事件的处理。如GUI Customization中,我们实现了Cus...

2006-06-17 11:32:00 387

Ticket for OPTS(Agent.java)

    private String ticket;    private String acistn; // telephone number for ACIS ED: 1.54.2 #346, #348    private String tnter; // ED: 1.54.7 #########ter#####    private String oTicket = null; // ED...

2006-06-17 09:36:00 89

String VS. Symbol

A string is a full blown Ruby object instance whereas a symbol is justan identifier (or tag).Symbols give you the equality operator (i.e. :foobar == :foobar)without needing to instantiate string objec...

2006-06-15 16:30:00 102

Copying an Object

Object#clone, Object#dup都是Ruby中的对象复制的方式,但是这两种方式中都只是浅拷贝(Shallow Copy), 而不是Deep Copy. 那么该如何来做deep_copy呢?Ruby中并没有提供现成的方法来处理。可以用开发者自己来实现对象图Graph中的对象的递归的访问。或者可以采用如下的方法来间接地达到对象拷贝的效果。 <pre> arr1 = [ 1,...

2006-06-11 13:37:00 78

CVS Linux Installation

http://www.uml.org.cn/pzgl/pzgl19.htm

2006-06-10 21:54:00 61

call a superclass method, but don't happen to be in the corresponding mehtod

class Student # Assuming Person has a say_hello method... alias :say_hi :say_hello def say_hello puts "Hi, there." end def formal_greeting # Say hello the way my superclass would...

2006-06-10 13:51:00 94

Instance Variable, Class Variable, Class Instance Variable

class MyClass SOME_CONST = "alpha" # A class-level constant @@var = "beta" # A class variable @var = "gamma" # A class instance variable def initialize @va...

2006-06-10 13:49:00 146

Relationship between Object and Class in Ruby

Always remember: Class is an Object, and Object is a Class

2006-06-09 13:31:00 110

Attribute的构造

class <nop>SomeClass  attr_reader :a1, :a2  # Creates @a1, a1, @a2, a2  attr_writer :b1, :b2  # Creates @b1, b1=, @b2, b2=  attr_accessor :c1, :c2  # Creates @c1, c1, c1=, @c2, c2, c2=  # ...end...

2006-06-09 12:54:00 109

Fwd: Difference between 'def s elf. …' and module_function …

---------- Forwarded message ----------From: Austin Ziegler <halostatue@gmail.com>Date: May 27, 2005 11:15 PMSubject: Re: Difference between 'def s elf. …' and module_function …To: ruby-talk ML...

2006-06-08 17:43:00 189

template的处理方式

其中,template的格式为: #begin template dath<adapter>   <header>    <protocol value="$protocol"/> <cktid value="$cktid"/> <trx value="dath"/> <region value

2006-06-08 14:56:00 169

AgentClient 与Server端的交互方式

在ServiceManager中,有两个syncRequest方法,其中一个用来直接通过BISServletClient请求将Request发送出去,即不将Request放入到Queue中,还有另外的一种方式是将Request放入到Queue中,并通知ServiceRequestSession其Queue已经更新了。并等待一段时间后,直接将该请求从Queue中删除,并判断是否已经处理。并返回结果 ...

2006-06-08 14:38:00 1604

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除