Redian新闻
>
盗版软件被发现 求助
avatar
盗版软件被发现 求助# Law - 律师事务所
h*e
1
感觉光盘不靠谱,移动硬盘会不会有问题?
谢谢
avatar
c*e
2
谢谢了!
avatar
s*t
3
风啊,是你
突然卸下了我的负担。
是你,举我到空中,
飘过草地,
飘过田野,
一直飘入黄昏的果园。
秋天是收获的季节,
稻浪在夕光里
合唱,
果实在红晕里安眠。
风啊,虽然这一切,
其实与我无关,
但你微凉而温存的
抚慰,却依旧让我,
泪水涟涟。
我一无所有,风啊,
可我还是满心的
丰收喜悦。
avatar
g*s
4
Function object重载()是C++的规定吗?为何选择()?手头没有D&R,这里有什么故事么?
struct myclass {
bool operator() (int i,int j) { return (i};
// using object as comp
sort (myvector.begin(), myvector.end(), myclass());
avatar
p*z
5
Angela Chang,这位美国注册会计师,同时也在国际前四大会计师事务所温哥华分部工
作超过十年的北京女子,最近出版「CPA女子:北美职场篇」,将进入北美会计行业必备的窍门
、会计执照的种类等,一一剖析,引导学子深入了解会计业及北美职场文化。
她表示,会计业已是北美前5%高薪的行业,更是不少学子嚮往的职业。她在书中举例美
国教授Robert E. Kelley在1985年所出版的书「金领阶级员工」,以此来比喻「会计执照即是
进入金领阶级的护照」。
但是她发现了一个事实,就是每年修读会计的亚洲大学生很多,但是真正成为会计师的
却少之又少。Angela指出,据美国2008年会计师的供给需求报告,会计事务所中只有6%的亚洲
人。因此,决定着手撰写该书。「写这本书之前,我读了100本的书,将所有会计执照取得的相关知
识以及个人经验一併彙整,希望能帮助年轻学子,尤其是华人学子。」Angela说。
书中她一一分析会计师证照种类、证照选择要素、美国与加拿大证照系统的不同,甚至包括会计师晋
升诀窍,毫不保留与读者分享。
拥有麦其尔大学金融及商业学士学位,及美国德州大学会计硕士学位的她,在知名会计事
avatar
k*9
6
请这儿有这方面经验的同学帮忙解疑一下。
有一个软件,我们学校有license,因为需要远程操作,有时比较麻烦,我下载了一个盗
版的。这个软件你遇到困难时,可以把文件发给公司请他们给意见,结果我大意了,上
次发的时候,是直接从这个盗版的软件生成的文件发给他们的,他们回信要我立即删掉
,说这是不符合他们license agreement.我删掉了,也回复他们了,他们说在提供帮助
给我之前,需要周一打电话speak with me。
我不知道他会问什么问题,我应该怎么回答。我没有跟任何个人和机构分享过这个,而
且没有用于除了个人学习之外的任何其他用途。他会不会录音,然后用于legal?
谢谢大家!
avatar
d*4
7
俺给你打了10分
avatar
T*d
8
嘿嘿,无感而发的佳作
avatar
t*t
9
since the name is "function object" (actually, "functor"), you probably
could guess it is a generalized *function*. what is operator() called?
function call operator. isn't it a natural choice?

事么?

【在 g*********s 的大作中提到】
: Function object重载()是C++的规定吗?为何选择()?手头没有D&R,这里有什么故事么?
: struct myclass {
: bool operator() (int i,int j) { return (i: };
: // using object as comp
: sort (myvector.begin(), myvector.end(), myclass());

avatar
o*n
10
我参加的四大,BDO,Moss Adams的一些social events,就没见到几个中国人在这片的
office上班的,就一个学长在kpmg,连年加班,几年长了50磅,吓死了。一个中国学姐
进了Moss Adams,有绿卡,才干了几个月就被雷了
avatar
c*e
11
thank you!
You are handsome. 10 points.
avatar
i*s
12
哈哈~
avatar
g*s
13
有道理。
在C++作者的FAQ上看到下述function object示例。下面这行该怎么理解呢?是重载了
int类型转换操作符吗?
operator int() const { return val; }
class Sum {
int val;
public:
Sum(int i) :val(i) { }
operator int() const { return val; }
int operator()(int i) { return val+=i; }
};
void f(vector v)
{
Sum s = 0; // initial value 0
s = for_each(v.begin(), v.end(), s);
cout << "the sum is " << s << "\n";
// or even:
cout << "the sum is " << for_each(v.begin(), v.end(),
Sum(0)) << "\n";
}

probably

【在 t****t 的大作中提到】
: since the name is "function object" (actually, "functor"), you probably
: could guess it is a generalized *function*. what is operator() called?
: function call operator. isn't it a natural choice?
:
: 事么?

avatar
l*z
14
通常看到这种东东我都抱怀疑的态度, 前4大的,那么她现在干嘛的呢?
avatar
j*e
15
10
avatar
s*t
16
妓女没有性欲可以接客,诗人没有灵感可以写诗。哈哈

【在 T******d 的大作中提到】
: 嘿嘿,无感而发的佳作
avatar
g*s
17
operator int() const { return val; }
这个函数的返回类型是int,参数列表是空。那是否可以更直观地写成:
int operator()(void) const {return val;}
试了一下,编译过不去。是不是对这个signature理解有误?

【在 g*********s 的大作中提到】
: 有道理。
: 在C++作者的FAQ上看到下述function object示例。下面这行该怎么理解呢?是重载了
: int类型转换操作符吗?
: operator int() const { return val; }
: class Sum {
: int val;
: public:
: Sum(int i) :val(i) { }
: operator int() const { return val; }
: int operator()(int i) { return val+=i; }

avatar
r*y
18
卖书啊

【在 l****z 的大作中提到】
: 通常看到这种东东我都抱怀疑的态度, 前4大的,那么她现在干嘛的呢?
avatar
c*e
19
10 for you.

【在 j****e 的大作中提到】
: 10
avatar
l*e
20
笑喷!

【在 s**t 的大作中提到】
: 妓女没有性欲可以接客,诗人没有灵感可以写诗。哈哈
avatar
e*d
21
It's user defined type conversion operator. You should not put
anything inside the parenthesis.

【在 g*********s 的大作中提到】
: operator int() const { return val; }
: 这个函数的返回类型是int,参数列表是空。那是否可以更直观地写成:
: int operator()(void) const {return val;}
: 试了一下,编译过不去。是不是对这个signature理解有误?

avatar
p*z
22
我也抱怀疑态度 她原来是sr. tax manager.
看她那个样子肯定是之前layoff那轮被刷下来了
才有时间写书 顺便卖点钱 不是.
所谓内行看门道 外行看热闹
虽然内容80%或许我们都知道
但是怎么说人家怎么说也是总结了出来 出了本书
给很多对行业不了解的人有帮助
这种做法我觉得还是需要肯定的啊
avatar
d*9
23
10 分
avatar
T*d
24
哼哼。小伙子不认识几个妓女妓男吧。他们的工作没你说得那么轻松。

【在 i*****s 的大作中提到】
: 哈哈~
avatar
g*s
25
i see. now i think i understand the code.
the int() operator is defined such that in "cout << s", s is implicitly
converted to an int to output.
s = for_each(v.begin(), v.end(), s) is an assignment that calls the
default assignment operator. we can actually just keep the RHS.
one remaining doubt: what if the class Sum has another float() type
converter defined? in that case which one would cout pick up?

【在 e****d 的大作中提到】
: It's user defined type conversion operator. You should not put
: anything inside the parenthesis.

avatar
V*r
26

我买了一本送人。我觉得挺适合会计学生好好看看的。
可能会扫描一下,内部小范围流传一下打印稿。

【在 p**z 的大作中提到】
: 我也抱怀疑态度 她原来是sr. tax manager.
: 看她那个样子肯定是之前layoff那轮被刷下来了
: 才有时间写书 顺便卖点钱 不是.
: 所谓内行看门道 外行看热闹
: 虽然内容80%或许我们都知道
: 但是怎么说人家怎么说也是总结了出来 出了本书
: 给很多对行业不了解的人有帮助
: 这种做法我觉得还是需要肯定的啊

avatar
c*e
27
Thank you!
10 points.

【在 d******9 的大作中提到】
: 10 分
avatar
e*d
28
Usually, you should overload operator << for cout or any ostream.
In this case, if operator int conflicts with operator float, there
will be ambigious error.

【在 g*********s 的大作中提到】
: i see. now i think i understand the code.
: the int() operator is defined such that in "cout << s", s is implicitly
: converted to an int to output.
: s = for_each(v.begin(), v.end(), s) is an assignment that calls the
: default assignment operator. we can actually just keep the RHS.
: one remaining doubt: what if the class Sum has another float() type
: converter defined? in that case which one would cout pick up?

avatar
p*z
29
哥们传阅一下?
avatar
p*8
30
10
avatar
g*s
31
sure. overloading << is more natural.
on the other hand, after overloading int(), how does << locate it
properly?
it seems << is very smart. the c++ compiler is defined in such way?

【在 e****d 的大作中提到】
: Usually, you should overload operator << for cout or any ostream.
: In this case, if operator int conflicts with operator float, there
: will be ambigious error.

avatar
s*d
32
前5%高薪?
我强烈怀疑。。。

必备的窍门
执照即是
6%的亚洲
照取得的相关知

【在 p**z 的大作中提到】
: Angela Chang,这位美国注册会计师,同时也在国际前四大会计师事务所温哥华分部工
: 作超过十年的北京女子,最近出版「CPA女子:北美职场篇」,将进入北美会计行业必备的窍门
: 、会计执照的种类等,一一剖析,引导学子深入了解会计业及北美职场文化。
: 她表示,会计业已是北美前5%高薪的行业,更是不少学子嚮往的职业。她在书中举例美
: 国教授Robert E. Kelley在1985年所出版的书「金领阶级员工」,以此来比喻「会计执照即是
: 进入金领阶级的护照」。
: 但是她发现了一个事实,就是每年修读会计的亚洲大学生很多,但是真正成为会计师的
: 却少之又少。Angela指出,据美国2008年会计师的供给需求报告,会计事务所中只有6%的亚洲
: 人。因此,决定着手撰写该书。「写这本书之前,我读了100本的书,将所有会计执照取得的相关知
: 识以及个人经验一併彙整,希望能帮助年轻学子,尤其是华人学子。」Angela说。

avatar
c*e
33
10:)

【在 p********8 的大作中提到】
: 10
avatar
t*t
34

no, if you just keep RHS, then the result is lost.
std::for_each send in the functor by value (and return by value, of course).
so the accumulated value is kept in a local copy of functor inside for_each.
this functor is returned and copied again. just like a=a+1, you can write
a+1 (that's a valid expression), but the result is lost.

【在 g*********s 的大作中提到】
: i see. now i think i understand the code.
: the int() operator is defined such that in "cout << s", s is implicitly
: converted to an int to output.
: s = for_each(v.begin(), v.end(), s) is an assignment that calls the
: default assignment operator. we can actually just keep the RHS.
: one remaining doubt: what if the class Sum has another float() type
: converter defined? in that case which one would cout pick up?

avatar
y*1
35
在四大做MANAGER 出来,大概可以做CFO之类吧,真可以说是前5%了,一般的人也就30%吧

【在 s********d 的大作中提到】
: 前5%高薪?
: 我强烈怀疑。。。
:
: 必备的窍门
: 执照即是
: 6%的亚洲
: 照取得的相关知

avatar
g*s
36
How about this?
Sum s;
for_each(v.begin(), v.end(), s);
The result still gets lost, as for_each is not pass-by-ref?

course).
for_each.
write

【在 t****t 的大作中提到】
:
: no, if you just keep RHS, then the result is lost.
: std::for_each send in the functor by value (and return by value, of course).
: so the accumulated value is kept in a local copy of functor inside for_each.
: this functor is returned and copied again. just like a=a+1, you can write
: a+1 (that's a valid expression), but the result is lost.

avatar
b*d
37
Not true for large and medium size companies.
My wife works for a fortune 50 company and almost everybody in her group (
tax) had prior big 4 experience. The tax managers from Big 4 can get a
senior tax analyst position there (the pay is about the same). Their tax
director was a partner from E&Y and was promoted quickly a VP.

30%吧

【在 y******1 的大作中提到】
: 在四大做MANAGER 出来,大概可以做CFO之类吧,真可以说是前5%了,一般的人也就30%吧
avatar
b*n
38
I think so. You can get around this by using static member or
giving access to data outside class. normally for_each is not
used for things like this anyway. you would use accumulate.

【在 g*********s 的大作中提到】
: How about this?
: Sum s;
: for_each(v.begin(), v.end(), s);
: The result still gets lost, as for_each is not pass-by-ref?
:
: course).
: for_each.
: write

avatar
E*t
39
误导大众, 害人不浅

必备的窍门
执照即是
6%的亚洲
照取得的相关知

【在 p**z 的大作中提到】
: Angela Chang,这位美国注册会计师,同时也在国际前四大会计师事务所温哥华分部工
: 作超过十年的北京女子,最近出版「CPA女子:北美职场篇」,将进入北美会计行业必备的窍门
: 、会计执照的种类等,一一剖析,引导学子深入了解会计业及北美职场文化。
: 她表示,会计业已是北美前5%高薪的行业,更是不少学子嚮往的职业。她在书中举例美
: 国教授Robert E. Kelley在1985年所出版的书「金领阶级员工」,以此来比喻「会计执照即是
: 进入金领阶级的护照」。
: 但是她发现了一个事实,就是每年修读会计的亚洲大学生很多,但是真正成为会计师的
: 却少之又少。Angela指出,据美国2008年会计师的供给需求报告,会计事务所中只有6%的亚洲
: 人。因此,决定着手撰写该书。「写这本书之前,我读了100本的书,将所有会计执照取得的相关知
: 识以及个人经验一併彙整,希望能帮助年轻学子,尤其是华人学子。」Angela说。

avatar
e*d
40
You can do something like,
for_each(v.begin(), v.end(), boost::ref(s));

【在 g*********s 的大作中提到】
: How about this?
: Sum s;
: for_each(v.begin(), v.end(), s);
: The result still gets lost, as for_each is not pass-by-ref?
:
: course).
: for_each.
: write

avatar
y*1
41
轻松的好工作,竞争还是很激烈的

【在 b*****d 的大作中提到】
: Not true for large and medium size companies.
: My wife works for a fortune 50 company and almost everybody in her group (
: tax) had prior big 4 experience. The tax managers from Big 4 can get a
: senior tax analyst position there (the pay is about the same). Their tax
: director was a partner from E&Y and was promoted quickly a VP.
:
: 30%吧

avatar
b*d
42
Yeah, their manager's pay (the entire package) is a little over $200K. And
I know for a fact their old VP of tax made around $500K a year before he retired (public records).
Considering how much they work, the pay is really not bad.

【在 y******1 的大作中提到】
: 轻松的好工作,竞争还是很激烈的
avatar
y*1
43
我们中国人,有几个能到这个地步的呀,难啊。做领导,老白是主流,会计又算是管理
类的,不
过,还算是个稳定,轻松和有盼头的职业吧,大家好好努力了。

And

【在 b*****d 的大作中提到】
: Yeah, their manager's pay (the entire package) is a little over $200K. And
: I know for a fact their old VP of tax made around $500K a year before he retired (public records).
: Considering how much they work, the pay is really not bad.

avatar
b*d
44
Yeah, very hard to get to the VP level in a large company...

【在 y******1 的大作中提到】
: 我们中国人,有几个能到这个地步的呀,难啊。做领导,老白是主流,会计又算是管理
: 类的,不
: 过,还算是个稳定,轻松和有盼头的职业吧,大家好好努力了。
:
: And

avatar
h*h
45
我发现在四大做得高点的中国人,几乎都是干tax的。assurance这边我基本上没有见过
中国人做到sr manager以上的。

【在 p**z 的大作中提到】
: 我也抱怀疑态度 她原来是sr. tax manager.
: 看她那个样子肯定是之前layoff那轮被刷下来了
: 才有时间写书 顺便卖点钱 不是.
: 所谓内行看门道 外行看热闹
: 虽然内容80%或许我们都知道
: 但是怎么说人家怎么说也是总结了出来 出了本书
: 给很多对行业不了解的人有帮助
: 这种做法我觉得还是需要肯定的啊

avatar
h*h
46
好点的公司的CFO好多都是四大的partner出来的。
Manager一般出来当controller或者director,还要是混的好的。

30%吧

【在 y******1 的大作中提到】
: 在四大做MANAGER 出来,大概可以做CFO之类吧,真可以说是前5%了,一般的人也就30%吧
avatar
h*h
47
我怎么听说的是tax这行亚裔根本就不算少数族裔。所以那些firm hire亚洲人都不能享
受优惠。

Angela指出,据美国2008年会计师的供给需求报告,会计事务所中只有6%的亚洲

【在 p**z 的大作中提到】
: 哥们传阅一下?
avatar
c*s
48
不少不少,至少NY&Boston见过一些。还有做partner的。所里的中国人很多,但有耐心
熬到SM&Partner的少。
avatar
p*z
49
DT我知道的 在Audit, Tax, Consluting都有Chinese的Partner.
在audit那个名字还带拼音的
avatar
h*h
50
我看DT的webcast的时候见过中国partner,但是都是在中国工作的呀。DT的webcast 专
门有一个China issue 系列,来讲的partner就有中国人,不过location都在中国。

【在 p**z 的大作中提到】
: DT我知道的 在Audit, Tax, Consluting都有Chinese的Partner.
: 在audit那个名字还带拼音的

avatar
b*d
51
不光是耐心吧

【在 c******s 的大作中提到】
: 不少不少,至少NY&Boston见过一些。还有做partner的。所里的中国人很多,但有耐心
: 熬到SM&Partner的少。

avatar
p*z
52

恩。。记得dt官网也有link关于china market 就是想让人知道他们懂china market呗
我说的是在美国的~据说是从加拿大转过来的 什么时候转,为什么转 我就不知道了
dt consulting有个女chinese partner还做chinese 客户。 给华维(?)做点什么.
tax那个据说也给国内网游公司干点tax活。

【在 h******h 的大作中提到】
: 我看DT的webcast的时候见过中国partner,但是都是在中国工作的呀。DT的webcast 专
: 门有一个China issue 系列,来讲的partner就有中国人,不过location都在中国。

avatar
c*0
53
好书啊,期待,会计业的新bible
avatar
h*e
54
想发财,去写书.
avatar
m*y
55
Could a manager with big 4 auditing experience know how to hedge, how to
sense the industry cycle? If not, how can she/he be a CFO?

30%吧

【在 y******1 的大作中提到】
: 在四大做MANAGER 出来,大概可以做CFO之类吧,真可以说是前5%了,一般的人也就30%吧
avatar
c*0
56
还真以为CPA不懂Finance啊,big4的在职培训,干了10年,都已经把fiance那套摸个底
朝天了
avatar
l*z
57
应该都懂, 但具体操作可能就不是那么一回事了.

【在 m**y 的大作中提到】
: Could a manager with big 4 auditing experience know how to hedge, how to
: sense the industry cycle? If not, how can she/he be a CFO?
:
: 30%吧

avatar
p*z
58
也不是一定要懂hedging才能做CFO吧。
avatar
m*y
59
10 years in CPA firm. Assuming that you are in audit line, you are just a
controller rather than CFO.
I am convinced that you will be a CFO should you you spend 4 years in audit,
4 years in advisory. and 2 years in M&A. Plus, you have a deep
understanding in the industry you work at.

【在 c*********0 的大作中提到】
: 还真以为CPA不懂Finance啊,big4的在职培训,干了10年,都已经把fiance那套摸个底
: 朝天了

avatar
r*4
60
TOP 5%.....HIGHLY DOUBT IT
avatar
c*n
61
前5%高薪?
我强烈怀疑。。。
avatar
t*g
62
为什么加拿大的都超级喜欢说北美?
哈哈
avatar
c*4
63
哪有下的
avatar
k*i
64
co-ask

【在 c****4 的大作中提到】
: 哪有下的
avatar
b*u
65
looks like a good book. I just ordered one for my fiance. thanks.
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。