`
ericluo
  • 浏览: 17686 次
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
买卖股票时,会有多个理由,但是不同理由的权重是不同的。买股票时,如果有一个理由不成立,就不能够买进。卖股票时,如果最重要的理由不存在了,就要及时的卖出。 检讨:      在目前的操作过程中,就是忽视了最重要的K线形态和均线系统技术形态走坏这个因素,没有及时的卖出股票而导致套牢。而只是关注Topview和DDE的数据了。实际上 Topview和DDE系统应该只是辅助性的。      还有就是一定要按照计划来进行操作,如果有计划而不按照计划来操作,还不如没有计划。
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% -10.16% -2.92% -13.51% 4.28% 4 '600595' 中孚实业 720.29% 127.93% -26.00% -26.97% 7.75% 21.01% 5 '600150' 中国船舶 ...
一些小朋友连婚都没有结,学什么项目管理! 世界上哪里见过全是Girl的软件公司?将来生了Baby,也要和儿子沟通嘛,所以每个Team里面必须要有1名Girl!(林老师规定的组建Team的 要求之一) Robert Martin身为著名软件工程大师居然 ...
-------------------- Start of forwarded message --------------------From: Devin Mullins <twifkak@comcast.net>Newsgroups: comp.lang.rubySubject: Re: What does this construct mean?Date: Sat, 16 Jul 2005 10:57:37 +0900Casper wrote:>1. class MyController < ActionController::Base>2. h ...
-------------------- Start of forwarded message --------------------From: "Ara.T.Howard" <Ara.T.Howard@noaa.gov>Newsgroups: comp.lang.rubySubject: Re: Exececuting another application from within rubyDate: Tue, 5 Jul 2005 07:03:40 +0900On Tue, 5 Jul 2005, Nigel Wilkinson wrote:> Hi ...
在OPTS中,事件处理原理主要有以下几个方面 事件的触发(事件源):一般是用户对UI的操作产生的触发,如customDispatcher.onICustomEvent(CustomEvent) 事件的注册(事件侦听器):一般地,在UI组件初始化的时候,会注册事件的侦听。在OPTS中,一般采用一个Singleton的方式来处理对一类事件的处理。如GUI Customization中,我们实现了CustomDispatcher来注册某组件对某类事件的侦听如customDispatcher.register(UIComponent) 事件的响应:一般地,我们在侦听器中实现接收到事件后的时间处理接口(方 ...
    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: 1.54.7, original  ticket
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 objects and perform a stringcomparison.If you don't need the String class's functionality and are just usi ...
Object#clone, Object#dup都是Ruby中的对象复制的方式,但是这两种方式中都只是浅拷贝(Shallow Copy), 而不是Deep Copy. 那么该如何来做deep_copy呢?Ruby中并没有提供现成的方法来处理。可以用开发者自己来实现对象图Graph中的对象的递归的访问。或者可以采用如下的方法来间接地达到对象拷贝的效果。 <pre> arr1 = [ 1, "flipper", 3 ]arr2 = Marshal.load(Marshal.dump(arr1)) </pre>
http://www.uml.org.cn/pzgl/pzgl19.htm
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. say_hi end end
class MyClass SOME_CONST = "alpha" # A class-level constant @@var = "beta" # A class variable @var = "gamma" # A class instance variable def initialize @var = "delta" # An instance variable end def m ...
Always remember: Class is an Object, and Object is a Class
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 值得注意的是通过attr_writer并没有创建b1, b2属性,而只是创建了@b1, @b2属性。而通过attr_reader, attr_accessor的方式会创建@a1, a1两种属性的形式. ...
---------- Forwarded message ----------From: Austin Ziegler <halostatue@gmail.com>Date: May 27, 2005 11:15 PM Subject: Re: Difference between 'def s elf. …' and module_function …To: ruby-talk ML <ruby-talk@ruby-lang.org>On 5/27/05, Nikolai Weibull< mailing-lists.ruby-talk@rawuncut.elit ...
Global site tag (gtag.js) - Google Analytics