s*y
2 楼
可以是我最喜爱的一部作品,我最近看的一场演出之类
与古典音乐相关(含民乐),体裁不限,纯灌水作品请绕道
参与奖100伪币,视参与情况最后评选优秀作品,奖励300伪币
欢迎大家踊跃参加,板儿带个头吧
前三位投稿者有惊喜哦,哈哈
与古典音乐相关(含民乐),体裁不限,纯灌水作品请绕道
参与奖100伪币,视参与情况最后评选优秀作品,奖励300伪币
欢迎大家踊跃参加,板儿带个头吧
前三位投稿者有惊喜哦,哈哈
l*d
3 楼
非常感谢裴帅MM赠我那么多祖传西红柿种子, 一定好好培养,加以传承!
砖头大哥,你给我的冬瓜种子每一棵都是裂开的,还有一颗已经分开两半,这样有
利于发芽吗?
砖头大哥,你给我的冬瓜种子每一棵都是裂开的,还有一颗已经分开两半,这样有
利于发芽吗?
y*6
4 楼
【 以下文字转载自 History 讨论区 】
发信人: yaz2006 (忘情四百年,快意山水间), 信区: History
标 题: Re: 古人怎么对付近视的?
发信站: BBS 未名空间站 (Thu Sep 24 01:15:49 2009, 美东)
越说越复杂了。你这样得不了天下,选不上总统。
视了
发信人: yaz2006 (忘情四百年,快意山水间), 信区: History
标 题: Re: 古人怎么对付近视的?
发信站: BBS 未名空间站 (Thu Sep 24 01:15:49 2009, 美东)
越说越复杂了。你这样得不了天下,选不上总统。
视了
c*s
5 楼
在学C#,刚接触property这个概念,有点迷惑。下面这段摘自书中,大意是提醒哪些情
况可以用,哪些情况不该用。觉得好像一个public的property如果有both get & set
accessor的话应该保证这个数据本身supposed to be readable and writable.我的问
题是,如果这样,为什么不直接用public data member? 感觉好像property只在
readonly(如下面balance例子)或writeonly时好用(一个用accessor,另一个用普通
method)。这个理解对吗?
多谢指教!
class BankAccount
{ ...
public money Balance
{
get { ... }
set { ... }
}
private money balance;
}
This is a poor design. It fails to represent the functionality required when
withdrawing money from and depositing money into an account. (If you know
of a bank that allows you to change the balance of your account directly
without depositing money, please let me know!) When you're programming, try
to express the problem you are solving in the solution and don't get lost in
a mass of low-level syntax:
class BankAccount
{ ...
public money Balance
{
get { ... }
}
public void Deposit(money amount) { ... }
public bool Withdraw(money amount) { ... }
private money balance;
}
况可以用,哪些情况不该用。觉得好像一个public的property如果有both get & set
accessor的话应该保证这个数据本身supposed to be readable and writable.我的问
题是,如果这样,为什么不直接用public data member? 感觉好像property只在
readonly(如下面balance例子)或writeonly时好用(一个用accessor,另一个用普通
method)。这个理解对吗?
多谢指教!
class BankAccount
{ ...
public money Balance
{
get { ... }
set { ... }
}
private money balance;
}
This is a poor design. It fails to represent the functionality required when
withdrawing money from and depositing money into an account. (If you know
of a bank that allows you to change the balance of your account directly
without depositing money, please let me know!) When you're programming, try
to express the problem you are solving in the solution and don't get lost in
a mass of low-level syntax:
class BankAccount
{ ...
public money Balance
{
get { ... }
}
public void Deposit(money amount) { ... }
public bool Withdraw(money amount) { ... }
private money balance;
}
v*n
6 楼
欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
characteristics of heteroskedasticity, what do you do to adjust your model"
傻了。
把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
exotic option with negative Vega" 又傻了。。。。
踢回NYC!
忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
characteristics of heteroskedasticity, what do you do to adjust your model"
傻了。
把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
exotic option with negative Vega" 又傻了。。。。
踢回NYC!
l*a
10 楼
私有成员是做数据隐藏用的,外部类只能看到你提供的接口,无法(或者不用)了解类内部的具体数据结构.
不过我从来都是public member,估计要是在公司做,会有这些要求吧
不过我从来都是public member,估计要是在公司做,会有这些要求吧
s*0
11 楼
what's the point? how much money did he make?
a*8
12 楼
用UE之前我一直认为我的耳孔也很大的
g*g
15 楼
对一个简单独立纯setter/getter的property来说,跟public member
并没有什么不同。问题在于未来不可预期。对于一个外部类来说,不做
encapsulation将来存在重构的风险。举两个简单的例子。
1. 你有一个String。你某天发现这个String有时候有white space需要trim。
用setter/getter,没有问题,可以在setter里面trim了。所有外部调用
setter/getter的类都不需要改动。反之,当你直接用public member的时候,
你要吗在所有引用的地方trim,要吗重新回到setter/getter。无论哪种
做法你改变的都是N个类,而不是一个。如果这是公共API,有不受你控制的
第三方的源码调用这个类,你直接就破坏了接口。
2. 你有两个变量a 和b,刚开始独立,后来突然来个要求a必须是b的2倍。
有getter/setter,不是问题。没有,结果可以想见。
一些函数语言如Scala,可以做到成员和函数的外部调用在语法上没有区别,
未来重构不是问题,这是其可以把成员确省成public的原因。我不知道C#
现在能否做到这个,Java是不行的。现代的编辑器,可以把从setter/getter
到equals/hashCode直接生成了,所以对我来说并不麻烦。
【在 c*****s 的大作中提到】
: 在学C#,刚接触property这个概念,有点迷惑。下面这段摘自书中,大意是提醒哪些情
: 况可以用,哪些情况不该用。觉得好像一个public的property如果有both get & set
: accessor的话应该保证这个数据本身supposed to be readable and writable.我的问
: 题是,如果这样,为什么不直接用public data member? 感觉好像property只在
: readonly(如下面balance例子)或writeonly时好用(一个用accessor,另一个用普通
: method)。这个理解对吗?
: 多谢指教!
: class BankAccount
: { ...
: public money Balance
并没有什么不同。问题在于未来不可预期。对于一个外部类来说,不做
encapsulation将来存在重构的风险。举两个简单的例子。
1. 你有一个String。你某天发现这个String有时候有white space需要trim。
用setter/getter,没有问题,可以在setter里面trim了。所有外部调用
setter/getter的类都不需要改动。反之,当你直接用public member的时候,
你要吗在所有引用的地方trim,要吗重新回到setter/getter。无论哪种
做法你改变的都是N个类,而不是一个。如果这是公共API,有不受你控制的
第三方的源码调用这个类,你直接就破坏了接口。
2. 你有两个变量a 和b,刚开始独立,后来突然来个要求a必须是b的2倍。
有getter/setter,不是问题。没有,结果可以想见。
一些函数语言如Scala,可以做到成员和函数的外部调用在语法上没有区别,
未来重构不是问题,这是其可以把成员确省成public的原因。我不知道C#
现在能否做到这个,Java是不行的。现代的编辑器,可以把从setter/getter
到equals/hashCode直接生成了,所以对我来说并不麻烦。
【在 c*****s 的大作中提到】
: 在学C#,刚接触property这个概念,有点迷惑。下面这段摘自书中,大意是提醒哪些情
: 况可以用,哪些情况不该用。觉得好像一个public的property如果有both get & set
: accessor的话应该保证这个数据本身supposed to be readable and writable.我的问
: 题是,如果这样,为什么不直接用public data member? 感觉好像property只在
: readonly(如下面balance例子)或writeonly时好用(一个用accessor,另一个用普通
: method)。这个理解对吗?
: 多谢指教!
: class BankAccount
: { ...
: public money Balance
c*n
16 楼
MM 好可爱~
"
【在 v**n 的大作中提到】
: 欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
: 忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
: characteristics of heteroskedasticity, what do you do to adjust your model"
: 傻了。
: 把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
: exotic option with negative Vega" 又傻了。。。。
: 踢回NYC!
"
【在 v**n 的大作中提到】
: 欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
: 忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
: characteristics of heteroskedasticity, what do you do to adjust your model"
: 傻了。
: 把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
: exotic option with negative Vega" 又傻了。。。。
: 踢回NYC!
s*o
20 楼
The given sample seems more about design patterns than the differences
between properties and fields.
Differences:
1. You can add custom logic within get/set block of a property.
2. You can do databinding with properties, but not with public fields.
3. Reflection works differently. (couldn't remember why properties work
better with reflection ...)
4. ...
【在 c*****s 的大作中提到】
: 在学C#,刚接触property这个概念,有点迷惑。下面这段摘自书中,大意是提醒哪些情
: 况可以用,哪些情况不该用。觉得好像一个public的property如果有both get & set
: accessor的话应该保证这个数据本身supposed to be readable and writable.我的问
: 题是,如果这样,为什么不直接用public data member? 感觉好像property只在
: readonly(如下面balance例子)或writeonly时好用(一个用accessor,另一个用普通
: method)。这个理解对吗?
: 多谢指教!
: class BankAccount
: { ...
: public money Balance
between properties and fields.
Differences:
1. You can add custom logic within get/set block of a property.
2. You can do databinding with properties, but not with public fields.
3. Reflection works differently. (couldn't remember why properties work
better with reflection ...)
4. ...
【在 c*****s 的大作中提到】
: 在学C#,刚接触property这个概念,有点迷惑。下面这段摘自书中,大意是提醒哪些情
: 况可以用,哪些情况不该用。觉得好像一个public的property如果有both get & set
: accessor的话应该保证这个数据本身supposed to be readable and writable.我的问
: 题是,如果这样,为什么不直接用public data member? 感觉好像property只在
: readonly(如下面balance例子)或writeonly时好用(一个用accessor,另一个用普通
: method)。这个理解对吗?
: 多谢指教!
: class BankAccount
: { ...
: public money Balance
s*0
21 楼
如果能赚钱的话 还面什么试啊 呵呵 直接回家数钱去了
c*p
24 楼
估计给你的是炒过的
c*s
25 楼
非常感谢各位的回答。
我原来最大的疑惑其实就是没有意识到stdio说的第一点,也就是goodbug举的两个例子
(书上的例子就是简单的把field的值传给accessor或反之)。stdio的2,3两点暂时还
看不懂,以后学完了再回来复习。非常感谢!
我原来最大的疑惑其实就是没有意识到stdio说的第一点,也就是goodbug举的两个例子
(书上的例子就是简单的把field的值传给accessor或反之)。stdio的2,3两点暂时还
看不懂,以后学完了再回来复习。非常感谢!
v*n
26 楼
他不知道的是,头天晚上我看书刚好看到heteroskedasticity,记忆好着呢。要是今天
在面试,恐怕就记不住了。呵呵。。。
"
【在 v**n 的大作中提到】
: 欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
: 忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
: characteristics of heteroskedasticity, what do you do to adjust your model"
: 傻了。
: 把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
: exotic option with negative Vega" 又傻了。。。。
: 踢回NYC!
在面试,恐怕就记不住了。呵呵。。。
"
【在 v**n 的大作中提到】
: 欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
: 忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
: characteristics of heteroskedasticity, what do you do to adjust your model"
: 傻了。
: 把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
: exotic option with negative Vega" 又傻了。。。。
: 踢回NYC!
a*8
27 楼
如果对自己耳孔大小有信心的话,还是试试吧。国内也卖不出太多钱,erji.net上团购
RMB880.
RMB880.
Y*H
30 楼
haha, nice.
估计这厮一贯这样,不过出来混总是要还的...
"
【在 v**n 的大作中提到】
: 欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
: 忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
: characteristics of heteroskedasticity, what do you do to adjust your model"
: 傻了。
: 把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
: exotic option with negative Vega" 又傻了。。。。
: 踢回NYC!
估计这厮一贯这样,不过出来混总是要还的...
"
【在 v**n 的大作中提到】
: 欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
: 忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
: characteristics of heteroskedasticity, what do you do to adjust your model"
: 傻了。
: 把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
: exotic option with negative Vega" 又傻了。。。。
: 踢回NYC!
v*n
34 楼
欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
characteristics of heteroskedasticity, what do you do to adjust your model"
傻了。
把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
exotic option with negative Vega" 又傻了。。。。
踢回NYC!
忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
characteristics of heteroskedasticity, what do you do to adjust your model"
傻了。
把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
exotic option with negative Vega" 又傻了。。。。
踢回NYC!
s*0
37 楼
what's the point? how much money did he make?
c*n
40 楼
MM 好可爱~
"
【在 v**n 的大作中提到】
: 欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
: 忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
: characteristics of heteroskedasticity, what do you do to adjust your model"
: 傻了。
: 把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
: exotic option with negative Vega" 又傻了。。。。
: 踢回NYC!
"
【在 v**n 的大作中提到】
: 欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
: 忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
: characteristics of heteroskedasticity, what do you do to adjust your model"
: 傻了。
: 把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
: exotic option with negative Vega" 又傻了。。。。
: 踢回NYC!
s*0
43 楼
如果能赚钱的话 还面什么试啊 呵呵 直接回家数钱去了
v*n
46 楼
他不知道的是,头天晚上我看书刚好看到heteroskedasticity,记忆好着呢。要是今天
在面试,恐怕就记不住了。呵呵。。。
"
【在 v**n 的大作中提到】
: 欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
: 忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
: characteristics of heteroskedasticity, what do you do to adjust your model"
: 傻了。
: 把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
: exotic option with negative Vega" 又傻了。。。。
: 踢回NYC!
在面试,恐怕就记不住了。呵呵。。。
"
【在 v**n 的大作中提到】
: 欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
: 忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
: characteristics of heteroskedasticity, what do you do to adjust your model"
: 傻了。
: 把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
: exotic option with negative Vega" 又傻了。。。。
: 踢回NYC!
Y*H
48 楼
haha, nice.
估计这厮一贯这样,不过出来混总是要还的...
"
【在 v**n 的大作中提到】
: 欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
: 忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
: characteristics of heteroskedasticity, what do you do to adjust your model"
: 傻了。
: 把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
: exotic option with negative Vega" 又傻了。。。。
: 踢回NYC!
估计这厮一贯这样,不过出来混总是要还的...
"
【在 v**n 的大作中提到】
: 欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
: 忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
: characteristics of heteroskedasticity, what do you do to adjust your model"
: 傻了。
: 把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
: exotic option with negative Vega" 又傻了。。。。
: 踢回NYC!
t*t
50 楼
学统计的都知道heteroskedasticity的说
"
【在 v**n 的大作中提到】
: 欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
: 忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
: characteristics of heteroskedasticity, what do you do to adjust your model"
: 傻了。
: 把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
: exotic option with negative Vega" 又傻了。。。。
: 踢回NYC!
"
【在 v**n 的大作中提到】
: 欺负我不是做quant 出身, 名词乱丢。 没问几句就吧 “heteroskedasticity"丢出来
: 忽我。 我让他解释是什么意思。他还不屑一顾。再问 “if the error terms shows
: characteristics of heteroskedasticity, what do you do to adjust your model"
: 傻了。
: 把他的option trading 经历吹得天花乱坠。 问了个 “give me an example of
: exotic option with negative Vega" 又傻了。。。。
: 踢回NYC!
T*i
52 楼
哈哈哈 让我想起当时在班上有个笑话
说是其实trader还弄不懂black scholes怎么推 但是比学MFE的苦逼学生牛多了
说是其实trader还弄不懂black scholes怎么推 但是比学MFE的苦逼学生牛多了
s*0
54 楼
bs 公式 不好推吧 呵呵
异方差 garch model 算吗?
异方差 garch model 算吗?
相关阅读
保险公司 Lead Research Analyst 这个职位〔灌水〕越想看书 越没有效率有没有人考actuary啊One QuestionSending Email for Job Hunting考试的报名费能申请退税么?如果公司不支持H1, 找intern得机会是不是也比较小?Anybody knows how a H4 get internship我终于可以发文了!~~~有点紧张终于开了Fall 2006 的考试成绩出来了(link inside)Questions about VEE statisticsJust scheduled a phone interviewOnline study materialWhite Paper on CAS Education Strategy还有公司有intern的openning吗?How to find company contacts and how to initiate contactwjz 由 oldcountry 授予 Actuary 俱乐部权力Another Question