由买买提看人间百态

topics

全部话题 - 话题: member
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
d*****r
发帖数: 39446
1
【此篇文章是由自动发信系统所张贴】
⊙ 投票开启于:Wed Feb 7 21:59:27 2007 类别:复选
⊙ 主题:Research areas of new recruited faculty members
⊙ 票选题目描述:
The research interests of the new recruited faculty members(2006) in your
department
【选项如下】
(1) Artificial Intelligence
(2) Robotics
(3) Hardware
(4) Architecture
(5) Numerical Analysis/Scientific Compu
(6) Programming Languages/Compilers
(7) Operating Systems
s*****o
发帖数: 1540
2
来自主题: CS版 - 关于IEEE Senior Member (转载)
【 以下文字转载自 EE 讨论区 】
发信人: sagayao (才子佳人(美国巴灵蹲大学计算机博士)), 信区: EE
标 题: 关于IEEE Senior Member
发信站: BBS 未名空间站 (Thu Nov 5 10:37:04 2009, 美东)
最近申请,reference希望我能够给他一个DRAFT,他好填写reference letter。
IEEE的reference letter form 在:
http://www.ieee.org/web/membership/senior-members/reference.html
In your own words, explain how the candidate has significantly performed his
/her professional duties for at least five years, providing dates will help
the review panelists. (See Examples of Significant Performance). (U
g*****y
发帖数: 1120
3
【 以下文字转载自 Faculty 讨论区 】
发信人: gomyway (新天地), 信区: Faculty
标 题: 是否有好心人能推荐我加入IEEE Senior Member
发信站: BBS 未名空间站 (Sun Feb 20 18:15:42 2011, 美东)
我的领域是computer science,发过几篇顶级会议论文,有十年工作经验。 现在办绿
卡,想加入高级会员。如果您是IEEE Senior Member的话,能否推荐我一下? 就差一
封推荐信。
请发回复到我的信箱里面,我可以发我的简历。谢谢!!
h******i
发帖数: 238
4
来自主题: CS版 - 求IEEE senior member的推荐人
现在因为准备绿卡,想申请IEEE Senior Member加强一下,需要找IEEE Senior Member
以上的会员帮忙推荐。已经找到了两位愿意帮忙的朋友。还需要一位,有哪位愿意帮忙
的大侠请回站内信。这事稍微有点急,先谢过。
f*z
发帖数: 421
5
【 以下文字转载自 Programming 讨论区 】
发信人: fyz (木~花样年华), 信区: Programming
标 题: C++ static member method with default arguments
发信站: BBS 未名空间站 (Thu May 29 05:40:49 2014, 美东)
大牛,同学们,请教,static member method 可不可用default argument?比如,
enum Index
{
INDEX_A = 0,
INDEX_B
};
class foo
{
public:
static void method1( int a, int b = Index::INDEX_A);
};
编译可以过,但有什么要注意的地方?
多谢!
S*A
发帖数: 7142
6
you can try dir(obj) to get a list of the member of the obj.
Depend on how the obj is implemented. dir(obj) might not get
all the member if the obj has its own access function.
w*s
发帖数: 7227
7
【 以下文字转载自 Programming 讨论区 】
发信人: wds (大盘5000不是梦), 信区: Programming
标 题: 关于在c++ member function里用signal( )
发信站: BBS 未名空间站 (Wed Aug 19 19:10:27 2015, 美东)
linux里这个例子
void my_handler (int param)
{
signaled = 1;
my_handler2(...);
}
int main ()
{
signal (SIGINT, my_handler);
}
如果my_handler, my_handler2是c++ member function,那么怎么整?
我老用了巨复杂的办法,奶奶的。。。
k****z
发帖数: 550
8
This is right as long as the parent class provides a good operator=()
In other words, you are not touching the private members of parent class,
but just assume operator=() will do that.
This is not guaranteed to work, if the parent class disables operator=, then
there's no way to do it. In this situation, trying to access those members
are against OO.
k**m
发帖数: 222
9
是用 ref.member 还是 ref->member?
为什么?
c***d
发帖数: 996
10
来自主题: Programming版 - [合集] C++ private member question
☆─────────────────────────────────────☆
arjiang (得失随缘,心无增减) 于 (Sun Jan 14 04:16:46 2007) 提到:
private member of a class
就是其他object不能直接access,
但如果是同一种class的不同instance呢?
如 Student A, B;
A 应该不能直接读取B的private: score 吧
可是为什么assignment operater 总是这样写
Student& operator=(const Student& rhs){
...
this->score=rhs.score;
...
}
难道assignment operator是个特例,还是我理解有问题?
谢谢解惑
☆─────────────────────────────────────☆
goodbug (好虫) 于 (Sun Jan 14 11:36:46 2007) 提到:
You can access private member in your class imp
i**p
发帖数: 902
11
来自主题: Programming版 - protected class member in C++
One class A is privately inherited by B, and B is privately inherited by C.
a protected member in class A can be accessed by member of class B but not
by C.
Is there any good reason to design the C++ this way? Is there any porblem if
it were accessible by class C?
f******y
发帖数: 2971
12
【 以下文字转载自 JobHunting 讨论区 】
发信人: hours16 (你好), 信区: JobHunting
标 题: interview question: make all class member functions virtual
发信站: BBS 未名空间站 (Mon Aug 25 21:52:32 2008)
the drawbacks of making all class member functions are virtual,
1. virtual table is bigger and lower the efficiency.
2. any more?
it seems the interviewer expect for more drawback, Thanks
j***i
发帖数: 1278
13
来自主题: Programming版 - Question about data member offset
I read the insider the c++ Object model 3.6
It says
class Point3d {
public:
virtual ~Point3d();
// ...
protected:
static Point3d origin;
float x, y, z;
};
The physical offset of the three coordinate members within the class
layout are, respectively, either 0, 4, and 8 if the vptr is placed at the
end or 4, 8, and 12 if the vptr is placed at the start of the class. The
value returned from taking the member's address, however, is always bumped
up by 1. Thus the actual values are 1, 5,
X****r
发帖数: 3557
14
来自主题: Programming版 - Question about data member offset
You did it wrong when trying to print out these values of
pointer-to-member type. Try this way:
(assuming sizeof(float Point3d::*) == sizeof(unsigned long) here;
if not, change 'unsigned long' to appropriate integral type)
float Point3d::*p = &Point3d::x;
std::cout << "&Point3d::x = " << *(unsigned long*)&p << std::endl;
The reason why you got '1's if you try to print out
pointer-to-member values directly is because they can be
automatically convert to boolean (true for not null, false for
null)
T*******x
发帖数: 8565
15
来自主题: Programming版 - stl 的 member type 看起来挺头大的
c++中 member type 就是为了stl设计的吧?看起来挺头大的。
比如vector::iterator。
为什么不设计成这样:iterator>,
这样是不是就可以免去了member type?
typename这样的keyword也可以不要了。
而且template有了统一简单的格式:
template
class A {
};
就是最基本的C++ class定义,除了多几个参数类型。
这样设计有什么问题吗?
D******4
发帖数: 47
16
Which allocator member function do standard containers use to acquire
storage for their elements in C++?
A. std::allocator<>::make(size_t)
B. std::allocator<>::new(size_t)
C. std::allocator<>::malloc(int)
D. std::allocator<>::allocate(size_t)
E. std::allocator<>::acquire(size_t)
我只知道D,allocate是allocator 的member function.
多谢
e****d
发帖数: 895
17
来自主题: Programming版 - in-class static member question
Declaration allows name lookup to find the entity.
Definition defines the entity.
A definition can also be a declaration.
You declare a static data member in a class and define it outside the class.
One definition rule doesn't allow you define a static data member
in a class becuase multiple includes will violate the ODR.
t****t
发帖数: 6806
18
来自主题: Programming版 - in-class static member question
people often found that c++ has a lot of things to remember. but in fact, if
you know the reason behind them, there is actually very little to "remember
".
For example, in this case, there is only one thing to remember, which is "
one definition rule".
* extern: if you declare it extern, you most probably have definition
elsewhere. so the one with extern is not definition. however if there is
initializer, then this must be the definition, since only one initializer is
allowed.
* function w/o bod... 阅读全帖
b*****e
发帖数: 474
19
来自主题: Programming版 - in-class static member question
这一段:
* static data member: class definition is meant to be included in multiple
files. if static data member is definition, then one definition rule is
violated. therefore you must defined it ("again") somewhere else.
- 这个 #include 不是问题吧, 用 #ifndef 。。。 #define 。。。#endif
保证了只一次的

if
remember
is
somewhere
t****t
发帖数: 6806
20
来自主题: Programming版 - in-class static member question
didn't you read xentar's post? even you can write initializer to const
integral static data member, it doesn't mean you don't have to write
separate definitons.
however, in most cases, const static integral will be optimized out as
constant, and there will be no references to the symbol anymore in the link
stage. and in compilation stage, "no diagnostic required" (9.4.2 clause 5),
so in most cases you can get through without any errors. BUT, i can easily
construct a counter-example:
#include 阅读全帖
W*********y
发帖数: 481
a***y
发帖数: 2803
22
来自主题: Programming版 - member and friend
const A operator+(const A & a){}
的left operand不是const.
friend const A operator +(const A &a, const A & b){}
的left operand是const.
------------------------------------------------------
A a(1);
a + 1;
这个a不是一个const A,因为它本身的值可以变化,a.i可以从1变成2.所以compiler只会
用const A operator+(const A & a){}.
这个case不存在2个函数哪个优先用的問題.这个case的本质是left operand是不是const.
========================================
把main函数里的A a(1);变成const A a(1);编译,你会发现结果成了friend
int main(){
const A a(1);
a + 1;
}

class A{
... 阅读全帖
r****t
发帖数: 10904
23
非 template 情况似乎比较清楚了,class template 里面的 static data
member 的定义和初始化有没有啥龟腚?
举个例子:
template
class StackWithCapacity : public stack_adapter
{
public:
typedef typename stack_adapter< Container>::size_type size_type;
private:
static const size_type capacity = 5;
};
capacity 是个 static const member, 我就直接在 class body 里面初始化了,
据 c++ primer,class body 外面还必须 define without initializer (虽然我我不这么做也能编译并运行正常). 这样我就在外面加
template
StackWithCapacity... 阅读全帖
B****S
发帖数: 597
24
A derived object may access the protected members of its base class only
through a derived object. The derived class has no special access to the
protected members of base type objects.
真是你妹啊。
A********i
发帖数: 97
25
来自主题: Programming版 - 关于在c++ member function里用signal( )
这样做是不对的。The types of pointer to member function and pointer to
function are different.
https://isocpp.org/wiki/faq/pointers-to-members
链接里第二个问题给了解法,跟wdong给的一样。
s********6
发帖数: 89
26
来自主题: Biology版 - ZZ:72 New Members Chosen By Academy
http://www8.nationalacademies.org/onpinews/newsitem.aspx?RecordID=04282009
72 New Members Chosen By Academy
WASHINGTON -- The National Academy of Sciences today announced the election
of 72 new members and 18 foreign associates from 15 countries in recognition
of their distinguished and continuing achievements in original research.
The election was held this morning during the business session of the 146th
annual meeting of the Academy. Those elected today bring the total number
of active membe
s****h
发帖数: 921
27
【 以下文字转载自 EE 讨论区 】
发信人: sjtuyh (net), 信区: EE
标 题: Associate Editors 和Editorial Board Members什么区别
发信站: BBS 未名空间站 (Wed Dec 22 15:56:25 2010, 美东)
看到一个杂志列表:
Associate Editors
Editorial Board Members
各有很多人
啥区别?
M*****n
发帖数: 16729
28
http://www.mitbbs.com/club_bbsdoc/BioFaculty.html
Please provide your .edu email address for identity verification while you apply.
This club is designed specifically for faculty members who are working or are interested in working on biological/biomedical or related research.
The goal of this club is to promote communications among faculty members who are working or interested in working on bio related subjects and to open opportunities for interdisciplinary discussions and collaborations.
s******u
发帖数: 46
29
【 以下文字转载自 Biology 讨论区 】
发信人: sanwenyu (三文鱼), 信区: Biology
标 题: Need sponsor by a Biophysical Society Member
发信站: BBS 未名空间站 (Mon Jan 4 12:34:57 2010, 美东)
Hi all,
I'm trying to submit my abstract to the 54th Biopysical Society Meeting at
San Francisco, need sponsor from a current Biophysical Society Member.
Anybody on this board can help me would be highly appreciated!
Please reply to my BBS e-mail box,if you can help!
I'm going to need your name, e-mail, and fax number to proceed the
submission.
p*****i
发帖数: 186
30
来自主题: Chemistry版 - ACS member值得买么?--为找工作
感觉不值。如果是去开会的话,有member注册费更便宜,当然就注册成member,否则意
义不大
R**********n
发帖数: 1109
31
来自主题: CivilEngineering版 - Design of Frame Members in a Building
Dear friends:
I met a problem in the desin of frame members in a building frame system.
The lateral load is taken by the shear wall. I consider the earthquake loads
and wind loads in the design of column and beams. However, my supervisor
said that I only need to consider the gravity loads in the design of those
members because we do not rely on them to resist lateral loads. But I do not
agree. Becausse physically, the earthquake and wind load still have effect
on beams and columns even though we
X*********u
发帖数: 107
32
来自主题: Computation版 - TPC member and reviewer opportunity (转载)
【 以下文字转载自 Immigration 讨论区 】
发信人: XiaoBaoDaTu (DATU), 信区: Immigration
标 题: TPC member and reviewer opportunity
发信站: BBS 未名空间站 (Sat Feb 4 07:48:38 2012, 美东)
A prestigious international conference is looking for TPC members and
reviewers in the area of game theory and its application in computer and
communication networks.
If interested, please PM me your basic academic background for further
information.
Thanks
X*********u
发帖数: 107
33
来自主题: Computation版 - TPC member and reviewer opportunity (转载)
【 以下文字转载自 Immigration 讨论区 】
发信人: XiaoBaoDaTu (DATU), 信区: Immigration
标 题: TPC member and reviewer opportunity
发信站: BBS 未名空间站 (Sat Feb 4 07:48:38 2012, 美东)
A prestigious international conference is looking for TPC members and
reviewers in the area of game theory and its application in computer and
communication networks.
If interested, please PM me your basic academic background for further
information.
Thanks
S********e
发帖数: 322
34
交的一样,fellow交的也一样,除非老到成为life member了
p*****e
发帖数: 59
35
senior member 是不是就是一个名头?下载论文上没什么特权吧?
S********e
发帖数: 322
36
没特权
member和fellow之间的一个等级
f****6
发帖数: 412
37
我想申请IEEE Senior Member, 需要3个Senior Member提名。
非常感谢!
s*****o
发帖数: 1540
38
来自主题: EE版 - 关于IEEE Senior Member
最近申请,reference希望我能够给他一个DRAFT,他好填写reference letter。
IEEE的reference letter form 在:
http://www.ieee.org/web/membership/senior-members/reference.html
In your own words, explain how the candidate has significantly performed his
/her professional duties for at least five years, providing dates will help
the review panelists. (See Examples of Significant Performance). (Use as
much space as you need)
不知道大侠有没有一个样本?比如说要写多少页?要不要像绿卡推荐信一样,写上推荐
人(不是被推荐人)的一些具体的成就什么的,用来表明这个推荐人本身牛?
另外,三个senior member推荐能过么?是不是一定要
b***a
发帖数: 6422
39
对将来升级为IEEE MEMER或者SENOR MEMBER有没有什么影响?
另外想请问一下大家的STUDENT MEMBER都自己掏钱加入还是老板掏钱加入?如果是自己
掏钱,有没有什么折扣啥的?谢谢!
i******s
发帖数: 911
40
可以早点成为life member,age+member age>=100
s***f
发帖数: 226
41
来自主题: EE版 - IEEE Student Member
最近在考虑想买个IEEE Student Member,但是想向这边的朋友请教一下,究竟买个
IEEE Student Member有什么好处?
X*********u
发帖数: 107
42
【 以下文字转载自 Immigration 讨论区 】
发信人: XiaoBaoDaTu (DATU), 信区: Immigration
标 题: TPC member and reviewer opportunity
发信站: BBS 未名空间站 (Sat Feb 4 07:48:38 2012, 美东)
A prestigious international conference is looking for TPC members and
reviewers in the area of game theory and its application in computer and
communication networks.
If interested, please PM me your basic academic background for further
information.
Thanks
w*******t
发帖数: 234
43
来自主题: EE版 - 求推荐IEEE senior member
小弟想申请IEEE senior member,IEEE要求三个senior member以上级别的人推荐,我现
在只有一位推荐人,恳请热心的哥们帮忙推荐,包子答谢
下面是我的基本背景,
PhD + 陆续8年工业界经验
10+paper
方向是电力电子和电力系统的
谢谢
h******i
发帖数: 238
44
来自主题: EE版 - 求IEEE Senior Member的推荐人
现在因为准备绿卡,正在申请IEEE Senior Member,需要找三位IEEE Senior Member以
上的会员帮忙推荐。已经找到了两位愿意帮忙的朋友。还需要一位,有哪位愿意帮忙的
大侠请回站内信。这事稍微有点急,先谢过。
h*******1
发帖数: 2
45
在一个二流大学作PHD(EE),认为工作量不够多(论文的),老板同意毕业,但老板无地位
,其他committee member会反对吗?会影响毕业吗?我只发了一个会议,还是在USA读PHD
时在中国发的
其他committee member作的方向和我的不同,他们会研究我的东西吗?答辩通不过会发生
w********h
发帖数: 12367
46
Date: Feb. 8, 2008
Contact: Kim Garcia, Membership Elections Manager
National Academy of Engineering
202-334-2195
FOR IMMEDIATE RELEASE
National Academy of Engineering Elects
65 Members and Nine Foreign Associates
WASHINGTON -- The National Academy of Engineering (NAE) has elected 65 new
members and nine foreign associates, NAE President Charles M. Vest announced
today. This brings the total U.S. membership to 2,227 and the number of
foreign associates to 194.
Election to the National Academy
l**o
发帖数: 1240
47
如果local chapter好的话,会有很多活动,你能接触到周围很多industry的member
对将来找工作会有不少好处。如果chapter烂的话,没什么收益
找工作的时候人家也不会就因为你是ASME的member就另眼看待你。
工作以后一般不是professional也用处不大。
z****a
发帖数: 150
48
来自主题: MedicalCareer版 - MEIMEIZ2007: 与 family member's communication1&2
☆─────────────────────────────────────☆
MEIMEIZ2007 (caregiver) 于 (Sat Dec 6 12:22:36 2008) 提到:
Here seems nice to me (a ICU nurse). I would like to talk about the
communication between physicians and family members from a nurse's viewpoint.
I am working in a busy ICU as a RN. Patients there are very sick. I saw a
phenomenon which lead me into thinking. During the admission those
physicians/residents usually tell family members that what test (CT, MRI,
Ultrasound etc), what procedure, and
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)