Redian新闻
>
error LNK2001:的错误如何改正?
avatar
error LNK2001:的错误如何改正?# Programming - 葵花宝典
P*n
1
我是工程专业,文章有17,一作占不太到一半,杂志都还不错但是没有nature和
science. Book chapter 2 , patent 1, review 30+, citation 120+。咨询了律师,
说我的不符合他们approve or
refund的那种标准,但还是可以帮我file。我的NIW 140已经通过了。
我这种情况大家觉得希望大吗?大家建议走PP吗?我们这里是NSC。
avatar
w*z
2
【 以下文字转载自 Software 讨论区 】
发信人: windz (风子), 信区: Software
标 题: 求一种windows widget
发信站: BBS 未名空间站 (Fri Mar 28 17:15:48 2008)
有没有一种windows widget,可以实时显示/本地数据库的data, 类似显示stock
ticker那样的?
avatar
p*t
3
搞database的,在公司除了做dba,还有什么职位? 刚进公司的时候,不可能直接就做dba
吧,那做的是什么?
avatar
f*e
4
I am using PHP based on Apache (on linux) to design a web page. One
question I am having is:
How to use PHP to display a dynamic graph? For example: how to use PHP to
display a network topology that may change periodically? Any tutorial in
this respect?
Thanks.
avatar
w*h
5
如果程序报错:
error LNK2001: unresolved external symbol "public: static int HeapSort::
heap_size" ([email protected]@@2HA)
如何解决?
以前遇到这个问题,似乎是开始不应该选择console application,应该用empty
project。当时重建empty project就解决了。
但现在再次遇到,在VC 2008 express edition,代码文件很多,不知道如何设置?难
道要重新建一个empty project吗?
多谢。
avatar
L*n
6
你的case 很强了,可以直接走PP的,很奇怪为什么律师不给你approve or refund。换
个律师事务所试试。
avatar
B*g
7
db developer

dba

【在 p*********t 的大作中提到】
: 搞database的,在公司除了做dba,还有什么职位? 刚进公司的时候,不可能直接就做dba
: 吧,那做的是什么?

avatar
K*n
8
Can you do a search in all cpp of your project for
"int HeapSort::heap_size"?
static class data member gets no memory allocated, you need to define one
like global variables.
say
int HeapSort::heap_size = 100; //initialization is optional
avatar
p*t
9
一个公司一般有多少个db developer?

【在 B*****g 的大作中提到】
: db developer
:
: dba

avatar
w*h
10
我开始在头文件里定义的是static int heap_size;
为什么不能定义static?

【在 K*****n 的大作中提到】
: Can you do a search in all cpp of your project for
: "int HeapSort::heap_size"?
: static class data member gets no memory allocated, you need to define one
: like global variables.
: say
: int HeapSort::heap_size = 100; //initialization is optional

avatar
B*g
11
这话问的怎么回答?有的公司一个没有,有的公司几百个应该是有的

【在 p*********t 的大作中提到】
: 一个公司一般有多少个db developer?
avatar
K*n
12
I know you define
static int heap_size;
in your class HeapSort in header file.
static class member is shared by all its class objects, so it gets no room
in objects. That's why you need make ANOTHER GLOBAL define in
your cpp file.
int HeapSort::heap_size = 100; //initialization is optional
avatar
p*t
13
db developer, java developer,哪个老了容易被裁?

【在 B*****g 的大作中提到】
: 这话问的怎么回答?有的公司一个没有,有的公司几百个应该是有的
avatar
K*n
14
Here is a quote from http://www.cprogramming.com/tutorial/statickeyword.html
An important detail to keep in mind when debugging or implementing a program
using a static class member is that you cannot initialize the static class
member inside of the class. In fact, if you decide to put your code in a
header file, you cannot even initialize the static variable inside of the
header file; do it in a .cpp file instead. Moreover, you are required to
initialize the static class member or it will not b
avatar
B*g
15
java developer,变化太快,新人太多。

【在 p*********t 的大作中提到】
: db developer, java developer,哪个老了容易被裁?
avatar
w*h
16
thanks!

program
class

【在 K*****n 的大作中提到】
: Here is a quote from http://www.cprogramming.com/tutorial/statickeyword.html
: An important detail to keep in mind when debugging or implementing a program
: using a static class member is that you cannot initialize the static class
: member inside of the class. In fact, if you decide to put your code in a
: header file, you cannot even initialize the static variable inside of the
: header file; do it in a .cpp file instead. Moreover, you are required to
: initialize the static class member or it will not b

avatar
g*l
17
看公司是干什么的吧,搞软件开发的,DEVELOPER多得很。
avatar
y*9
18
>> 一个公司一般有几个dba?
It really depends. I met several DBAs in a Oracle 11g upgrade seminar this
year, two of them told me that they are the only DBA in their company.
There are 18 people ( 17 are DBAs) reporting to my boss. The one that is
not a DBA is a mananger who have 7 orther DBAs reporting to him. We are
production support group. There are 10-20 DBAs in India who support non-
production databases. They are hiring more India guys in India to manage
production databases now. The whole company should have 100-150 DBAs I
guess. I am in one of the biggest telecom.
>> 搞database的,在公司除了做dba,还有什么职位? 刚进公司的时候,不可能直接就做
dba
I know one chinese girl in my group is a Java developer for 7 years then her
group removed and she was assigned DBA role 2 year ago. In recent years, I
did not observe that my company directly hire some DBA as employee in USA.
They offer contract position first. In the past 3 years at least 5 contract
DBAs converted to permanent positions.
avatar
g*l
19
有的公司一个都没有,DBA兼管系统活开发。提供数据服务的会有DBA TEAM,卖东西的
小店,穷糊弄一下没DBA,省钱。
avatar
p*t
20
恩,java太容易上手,3年出师.

【在 B*****g 的大作中提到】
: java developer,变化太快,新人太多。
avatar
x*i
21
java的技术太简单变化太快,精通java的阿三比蚂蚁还多,老了被裁的java developers
最多
avatar
B*g
22
精通java需要打引号

developers

【在 x*******i 的大作中提到】
: java的技术太简单变化太快,精通java的阿三比蚂蚁还多,老了被裁的java developers
: 最多

avatar
x*i
23
为啥要打引号?
你的意思是阿三喜欢吹牛?

【在 B*****g 的大作中提到】
: 精通java需要打引号
:
: developers

avatar
B*g
24
真正精通Java的人不可能没工作,你去Java版问问有几个敢自称精通的。

【在 x*******i 的大作中提到】
: 为啥要打引号?
: 你的意思是阿三喜欢吹牛?

avatar
x*i
25

哦,那你觉得到什么程度能算精通java?

【在 B*****g 的大作中提到】
: 真正精通Java的人不可能没工作,你去Java版问问有几个敢自称精通的。
avatar
B*g
26
请关注java版,已经发过去了。同样问题,谁敢说自己精通oracle?

【在 x*******i 的大作中提到】
:
: 哦,那你觉得到什么程度能算精通java?

avatar
g*l
27
好几个说是精通SQL SERVER的连几个DATABASE RECOVERY MODEL都不知道
avatar
a9
28
有几个?

【在 g***l 的大作中提到】
: 好几个说是精通SQL SERVER的连几个DATABASE RECOVERY MODEL都不知道
avatar
i*a
29
兩個
1. recoverable
2. not recoverable

【在 a9 的大作中提到】
: 有几个?
avatar
B*g
30
你是哪个?

or

【在 i****a 的大作中提到】
: 兩個
: 1. recoverable
: 2. not recoverable

avatar
a9
31
耍我。明明是3个
full,bulk-logged,Simple

or

【在 i****a 的大作中提到】
: 兩個
: 1. recoverable
: 2. not recoverable

avatar
i*a
32
看運氣

【在 B*****g 的大作中提到】
: 你是哪个?
:
: or

avatar
i*a
33


【在 a9 的大作中提到】
: 耍我。明明是3个
: full,bulk-logged,Simple
:
: or

avatar
g*l
34
这可是INTERVIEW常问的问题,答错了人就知道你是DEVELOPER,不是正式的DBA

【在 i****a 的大作中提到】
: 哦
avatar
i*a
35
en, 入門級問題

【在 g***l 的大作中提到】
: 这可是INTERVIEW常问的问题,答错了人就知道你是DEVELOPER,不是正式的DBA
avatar
g*l
36
有两个十年以上经验的,提示了SIMPLE FULL之后还是答不上第三个

【在 i****a 的大作中提到】
: en, 入門級問題
avatar
B*g
37
正常,人家就用这俩个。

【在 g***l 的大作中提到】
: 有两个十年以上经验的,提示了SIMPLE FULL之后还是答不上第三个
avatar
g*l
38
问了为什么用SIMPLE为什么用FULL,也说不上所以然

【在 B*****g 的大作中提到】
: 正常,人家就用这俩个。
avatar
B*g
39
你这个和前一阵job/working版一样,人家10几年的经验让人家当场写程序,结果人家
告到上面去了。嘿嘿,要是俺绝对不找10+的,有1-2年经验的足够了。

【在 g***l 的大作中提到】
: 问了为什么用SIMPLE为什么用FULL,也说不上所以然
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。