由买买提看人间百态

topics

全部话题 - 话题: abstract
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
z*******3
发帖数: 13709
1
来自主题: Java版 - 再论abstract class
之前说过我对abstract class的看法,倒是引来不少非议
尤其是有些人居然举出了例子,好,我们就从这个例子开始
有人说在这种情况下要使用abstract class
比如一个animal,有walk和sing方法
那么代码就是
public abstract class Animal{
public void walk(){System.out.println("walk")};
public abstract void sing();
}
然后对于具体的实现类,比如Cat,有如下实现
public class Cat extends Animal{
public void sing(){
System.out.println("cat sing");
}
}
这样一个类,好处就是“便于扩展”等等
OK,那么我们就从这个例子出发,说说为什么在j2ee环境中,我们不这么做
然后说说会怎么做
首先,在j2ee的环境中,关于animal这种实体
我们会在各个层面建立entity
比如在db层面建立一个表,叫做animal,然后有一个cat记录
然后通过orm,建立起一个dto之类的玩... 阅读全帖
z*******3
发帖数: 13709
2
来自主题: Java版 - 再论abstract class
之前说过我对abstract class的看法,倒是引来不少非议
尤其是有些人居然举出了例子,好,我们就从这个例子开始
有人说在这种情况下要使用abstract class
比如一个animal,有walk和sing方法
那么代码就是
public abstract class Animal{
public void walk(){System.out.println("walk")};
public abstract void sing();
}
然后对于具体的实现类,比如Cat,有如下实现
public class Cat extends Animal{
public void sing(){
System.out.println("cat sing");
}
}
这样一个类,好处就是“便于扩展”等等
OK,那么我们就从这个例子出发,说说为什么在j2ee环境中,我们不这么做
然后说说会怎么做
首先,在j2ee的环境中,关于animal这种实体
我们会在各个层面建立entity
比如在db层面建立一个表,叫做animal,然后有一个cat记录
然后通过orm,建立起一个dto之类的玩... 阅读全帖
u****s
发帖数: 2186
3
来自主题: Java版 - abstract class 的简单例子
When & why abstract class:
1. All subclasses of the abstract class inherit from the abstract class
There is an 'Is-A' relationship between abstract class and its subclasses
. Interface is a 'Can-Do' relationship.
2. All subclasses share most of the fields and methods, only one or just a
few different methods with different implementation. If all these classes
implement an interface, you just put it in the abstract class declaration.
3. Sometimes you only want these methods mentioned in 2. to ... 阅读全帖

发帖数: 1
4
Dear Colleague,
You are hereby cordially invited to submit a Technical Paper abstract to the
Emerging Materials and Technology session of SAMPE Long Beach 2018.
The conference will be held at the Long Beach Convention Center in Long
Beach, California on May 21-24, 2018. For detailed information visit http://www.sampeamerica.org/.
Abstract submissions are due on December 1, 2017 (apologies for the short
notice).
Please submit your abstract here: http://www.sampeamerica.org/call-for-abstracts.
Som... 阅读全帖

发帖数: 1
5
Dear Colleague,
You are hereby cordially invited to submit a Technical Paper abstract to the
Emerging Materials and Technology session of SAMPE Long Beach 2018.
The conference will be held at the Long Beach Convention Center in Long
Beach, California on May 21-24, 2018. For detailed information visit http://www.sampeamerica.org/.
Abstract submissions are due on December 1, 2017 (apologies for the short
notice).
Please submit your abstract here: http://www.sampeamerica.org/call-for-abstracts.
Som... 阅读全帖

发帖数: 1
6
Dear Colleague,
You are hereby cordially invited to submit a Technical Paper abstract to the
Emerging Materials and Technology session of SAMPE Long Beach 2018.
The conference will be held at the Long Beach Convention Center in Long
Beach, California on May 21-24, 2018. For detailed information visit http://www.sampeamerica.org/.
Abstract submissions are due on December 1, 2017 (apologies for the short
notice).
Please submit your abstract here: http://www.sampeamerica.org/call-for-abstracts.
Som... 阅读全帖
o******o
发帖数: 35
7
来自主题: Immigration版 - Apply to review abstracts for SLEEP 2014!
http://www.aasmnet.org/articles.aspx?id=4174
Apply to review abstracts for SLEEP 2014!
American Academy of Sleep Medicine
Wednesday, September 11, 2013
The APSS Program Committee is now accepting applications from AASM and /or
SRS members wishing to serve as expert reviewers of scientific abstracts
submitted for presentation at SLEEP 2014, which will be held May 31-June 4
in Minneapolis, Minnesota. By becoming an abstract reviewer, you have the
opportunity for deeper involvement in the SLEEP mee... 阅读全帖
S****h
发帖数: 558
8
来自主题: Java版 - 再论abstract class
呵呵。lz精神可嘉。很多说得很有道理。不过抬点杠哈。
也用Animal的例子,lz说business tier用,我同意,具体用,我瞎编个例子
abstract Class Aminal{
abstract void feed();
abstract void rest();
void live(){
while (not dead){
feed();
rest();
}
....
}
}
这种时候用abstract class比较方便,其实就象另一位说过,就是个template. 当然你
说剥离行为做单独的类,当然也可以。而且如果行为很复杂,剥离也许更好,但是如果
简单,可能还是abstract 比较方便。
而且这里如果把feed(),rest()都变成最常见的concrete,反而不符合is-a 的关系,经
典的OOP观点恐怕是必须abstract.感觉传统OOP,其实并不喜欢 Override.
至于fianl class,最著名的恐怕是String,好像是安全原因吧。
S****h
发帖数: 558
9
来自主题: Java版 - 再论abstract class
呵呵。lz精神可嘉。很多说得很有道理。不过抬点杠哈。
也用Animal的例子,lz说business tier用,我同意,具体用,我瞎编个例子
abstract Class Aminal{
abstract void feed();
abstract void rest();
void live(){
while (not dead){
feed();
rest();
}
....
}
}
这种时候用abstract class比较方便,其实就象另一位说过,就是个template. 当然你
说剥离行为做单独的类,当然也可以。而且如果行为很复杂,剥离也许更好,但是如果
简单,可能还是abstract 比较方便。
而且这里如果把feed(),rest()都变成最常见的concrete,反而不符合is-a 的关系,经
典的OOP观点恐怕是必须abstract.感觉传统OOP,其实并不喜欢 Override.
至于fianl class,最著名的恐怕是String,好像是安全原因吧。
k**3
发帖数: 917
10
来自主题: Programming版 - factory and abstract factory 的区别
Among GoF patterns, there are Abstract Factory and Factory Method patterns,
but no Factory pattern.
Abstract Factory creates a "family" of "abstract" products.
Factory Method is about letting subclasses decide what concrete products to
create.
In practice, Factory can be considered as a special case of Abstract Factory
, which creates only one product, abstract or concrete, but abstract
preferred.
p********6
发帖数: 65
11
Hope I can get some answers here.
I am working on my EB1B case with my lawyer. She raised a question on
whether my poster presentations/abstracts could be used to claim authorship.
Her points is that only the PUBLISHED abstracts in conference proceedings
or abstract books can be used for authorship. Poster presentation doesn't
belong to authorship catogary.
Tha lawyer suggests me to show evidence of these published abstracts in
order to claim authorship.
I didn't keep all the abstract books and
M*********a
发帖数: 213
12
来自主题: Immigration版 - 关于conference abstract 的问题?
这些年参加了不少会议,每一个会议都作 presentation and conference abstract ,
一直也没觉得这些presentation and conference abstract 有什么用。看到版上很多
人提到了conference abstract, 想问一下,在申请绿卡提交材料的时候,这些
conference abstract 单独列出来吗?还是算 paper ?怎么查citation ? 这些
conference abstract 用处大吗?还是有比没有强?
谢谢了!!!
r***e
发帖数: 14
13
想申请EB1A,碰到一个问题:
参加了几个会议,
有的会议是1 abstract + 1 conference paper + 1 presentation
有的会议是1 abstract + 1 presentation
有的会议只有非一作的abstract
结果导致有7篇conference papers, 14个abstracts 和11个presentations。
另外我有11篇peer-reviewed papers.总体publication不强,想请教我该怎样在
authorship中描述。
如 I have 18 research papers, 14 abstracts and 11 presentations? 或其他更好
的描述?
请大牛们赐教,非常感谢!
p********r
发帖数: 3243
14
列位大牛,小弟新手。
请教一个入门级的傻问题。
前几天在网上搜到本人在前PI那工作时的一篇ABSTRACT和众多别人的ABSTRACT发表在某
杂志的增刊上。又记得前PI给我email过(当时本人已经离开)和这个ABSTRACT对应的
POSTER powerpoint,让我校对。
小弟的问题就是,我这个PUBLICATION到底算POSTER还是ABSTRACT,还是都算?算POSTER
的话如何提供证据?网上查到的ABSTRACT打印即可当证据吗?
请大牛们耐心指导。多谢。
s****y
发帖数: 53
15
来自主题: Immigration版 - Abstract reviewers needed--all biology fields
As you may know, shortly after the November 8, 2013 abstract deadline, ASN
volunteers are asked to review abstracts submitted for ASN’s Scientific
Sessions at EB. This year we are moving to a new submission site and will be
able to review abstracts online. With that in mind, we are going to need
reviewers name’s earlier than previous years- no later than October 15 –
so that user names can be assigned and log-in instructions distributed.
If you are willing to review 25 abstracts or more, plea... 阅读全帖
p*a
发帖数: 592
16
来自主题: Java版 - Re: abstract classes GRAPHICS
I think you haven't fully understood abstract
class yet. You can't instantiate an abstract
class, which means you can't use new MyAbstractClass()
to create an instance. But that doesn't prevent
you from instantiate a subclass(which is concrete)
of the abstract class. A simple example will show
the advantage of having an abstract class:
abstract class MyAbstractClass { ... }
class MyConcreteClass1 extends MyAbstractClass { ... }
class MyConcreteClass2 extends MyAbstractClass { ... }
class Test
i***m
发帖数: 148
17
来自主题: Immigration版 - abstract审稿意见怎么写?
好不容易拿到第一个审稿, 是为一个会议审abstract
只见过文章的审稿意见, 这个abstract审稿意见怎么写阿?
各位有经验的能赐教一下吗?
另外是不是abstract都不拒的啊?
(我生物专业的, 我们专业开会的abstract就是灌水)
S*******r
发帖数: 275
18
有8篇journal paper,还有很多会议投了Abstract,然后被接收,做了presentation或
者poster,有的发表了proceeding,有的没有proceeding,这个proceeding和abstract
应该怎么claim?
proceeding算publication么?abstract呢?和正式的journal文章怎么区分?
APS的春秋会议,只有Abstract,印发在 Bulletin of the American Physical
Society,有文章号,但是会议不接收proceeding,怎么算?谢谢!
z*******3
发帖数: 13709
19
来自主题: Java版 - 三论abstract class
真正的结构上的美要从包结构上入手
而不是从类这个层次入手解决
整体结构就应该划分清楚
而不是等到类这个层次再来切割
那就很痛苦了
所以整个软件工程就是从大而小的切割
而不是在最低一层也就是类层面上的切割
通俗点说就是先component diagram
再class diagram,结构应该是先总体后部分
enum是第一个坚决淘汰abstract class机制的api
如果说以前的api是还隐晦地表达对abstract class的不满
比如servlet, struts等使用abstract class的框架逐步被市场所淘汰
或被其它不需要严格继承的框架所替换
使得用户有更大的灵活性
还有很多api可以用abstract class全部具体化,以满足你不愿意继承的需要
的话
那么enum的出现,则是明确地拒绝你使用这种半实现的机制
看api的变迁足够感觉出这个趋势了
你写的那些代码再重要能比enum这个关键字更重要?
哼哼
下班咯,走人
s*******a
发帖数: 1296
20
【 以下文字转载自 Faculty 讨论区 】
发信人: smileSiva (siva), 信区: Faculty
标 题: 请问一下投会议abstract的问题
发信站: BBS 未名空间站 (Fri Oct 14 16:28:12 2011, 美东)
我最近在写一篇文章,准备投ACS的某篇期刊。
现在发现明年ACS的年会投abstract的deadline很近了,不知道我能不能把这篇文章的
abstract投到ACS的年会?要是投abstract我只想做个oral presentation或者poster,
不打算发会议文章的。这样算是一稿多投吗?
不好意思问的问题太弱了,参加的会议少。。。
k***g
发帖数: 4904
21
我没开过ACS的会议,这个会搞化学的值得参加吗?
我看了一下会议网页,提交abstract和报名是分开的,但是我没有去提交abstract,不
知道后面的程序是不是要先报名才可以完成。如果不需要报名就可以提交abstract,我
想看看提交完是否被选中oral,如果有oral就报名,没有就算了,这样可以不?
如果不报名,abstract会被收入proceedings吗?
o***b
发帖数: 76
22
来自主题: Faculty版 - abstract and revised budget
I was recently contacted by the PD. He asked me to provide abstract and
revised budget as well as response to the panel's concerns. Most people I
have asked say that abstract and revised budget are a good sign. Has anyone
heard of cases where the proposal was declined after abstract and revised
budget? Thanks.
s*******a
发帖数: 1296
23
来自主题: Faculty版 - 请问一下投会议abstract的问题
我最近在写一篇文章,准备投ACS的某篇期刊。
现在发现明年ACS的年会投abstract的deadline很近了,不知道我能不能把这篇文章的
abstract投到ACS的年会?要是投abstract我只想做个oral presentation或者poster,
不打算发会议文章的。这样算是一稿多投吗?
不好意思问的问题太弱了,参加的会议少。。。
t********n
发帖数: 515
24
来自主题: Faculty版 - on-campus的abstract
学校让我发abstract给他们,我文章是用latex写的,abstract要发latex打出来的pdf
版本还是用word版本?不知道系里要不要copy我的abstract放到他们系里的模版,发
latex打的版本怕他们copy paste会有些不能认出来给他们添麻烦,发word又担心他们
觉得我很业余。请各位前辈支招,谢谢!
d*******2
发帖数: 1480
25
来自主题: Postdoc版 - 开会取消abstract有啥影响
没结果先把abstract 写了?

本来写的一个abstract投到材料学会,被接收了,是talk. 月底要去present了,结果
啥也没做出来,怎么办啊?想withdraw abstract了,不知道会不会对老板的
reputation有什么负面的影响。有谁有这样的经验吗?谢谢!
d*******2
发帖数: 1480
26
来自主题: Postdoc版 - 开会取消abstract有啥影响
没结果先把abstract 写了?

本来写的一个abstract投到材料学会,被接收了,是talk. 月底要去present了,结果
啥也没做出来,怎么办啊?想withdraw abstract了,不知道会不会对老板的
reputation有什么负面的影响。有谁有这样的经验吗?谢谢!
s*****n
发帖数: 1279
27
来自主题: Immigration版 - 豆腐干大小的abstract算publication吗?
每年参加APS年会都有一个abstract,限定两三百字以内。然后发在一个meeting
bulletin上面。bulletin上面基本都是
abstract,每个看起来就象一块豆腐干,这种也算publication吗?这样的abstract我
第一著者的有五六个,非一作有几十
个。不知道有没有用。
这种会议bulletin是不是不算是出版物?
p********6
发帖数: 65
28
Laoda555, 谢谢你的回复.
我明白你讲的道理.我现在的问题是网上查不到我会议的abstracts,但是他们有hard
copy的会议的论文集.那么, 我一定要先找会议的主办方帮忙重新给我寄论文集,然后
copy我的那部分,才可以作为证据来claim authorship么? 要是这样的话,我可能要花不
少时间来联系他们以及等邮件了.
我收到的email只说我的abstracts经review后被接受做poster presentation.要是只用
email再加上我自己打印的abstract可以么? 还是绝对行不通啊?
再次多谢了
O***C
发帖数: 1219
29
来自主题: Immigration版 - 会议ABSTRACT怎么查引用次数?
我的文章数和文章引用数都不多。
但是在各类会议上发表了不少ABSTRACT,律师说ABSTRACT的引用也算数。
GOOGLE SCHOLAR只能查文章引用数,请问各位达人:会议ABSTRACT怎么查引用次数?
谢谢指教!
u*********g
发帖数: 146
30
来自主题: Immigration版 - Published abstract 和 conference presentation
在conference 上做了presentation 就有了published abstract了。 大家准备材料的
时候是把它当成哪个呢?show 会议acceptance of abstract的email呢还是把
published abstract copy一份呢--这个也就相当于白纸上打出来的啊。
谢谢了!
l**********n
发帖数: 303
31
【 以下文字转载自 EB23 讨论区 】
发信人: liangjingjin (亮晶晶), 信区: EB23
标 题: 请问如何获得review邀请和发表abstract的会议论文
发信站: BBS 未名空间站 (Sat Mar 5 13:49:40 2011, 美东)
你好,我想请问下大家是如何获得那些review的邀请的? 我现在想多review,但还是不
知道如果
得到邀请
另外,请问有人知道如何发表可以接受abstract的会议么? 就是只有abstract,但是
不需要去
present,和注册会议缴费的那种,谢谢
c****n
发帖数: 271
32
最近review了本专业协会会议的11篇abstract
review的同时对于其中(3篇)申请了一个award的abstract要给出是否推荐给award的
commettee的意见
award的commettee最后再评审
这个award的评选标准是
*Exemplifies innovation within various disciplines across
Biotechnology;
*Demonstrates originality in research or approach focused on
addressing a problem;
*Provides an impact on basic science by which it can be applied to
drug development;
*Represents a creative approach that can be adapted by the
biotechnology field in a significant manner.
请问这个review在EB1的时候能够claim么?
... 阅读全帖
v****a
发帖数: 388
33
来自主题: Immigration版 - conference abstract review
这次收到会议abstract review的机会,有8篇。这种conference abstract的review也
可以算在review里面吧?
但这些review没有单独的邀请信,只是一个summary,说感谢你愿意review这8篇
abstracts.这个可以直接做证据么?
s**********g
发帖数: 551
34
参加了几个会议,做的presentation讲的都是同一个课题,submit的abstract 大同小
异,这种情况下算几个publication?打印出来的abstract看起来都差不多,IO会不会
质疑啊?另外打印原始的abstract,不是publish的可不可以呢?会议比较久了,找不
到program了。
Z******t
发帖数: 206
35
来自主题: Immigration版 - eb1b 请问 meeting abstracts
这个published abstracts 的标准是说google 网上能搜到吗?
我参加的会议的abstracts 网上都搜不到.是不是不能算 publication?
我参加会议的时候买了一本abstracts合集装订本, 复印一下能用吗?
关键复印和白纸打印的都没有页眉页脚的官方证明.
c*****g
发帖数: 408
36
我倒是找到了当初参加会议的收据邮件,还有个会议有个poster人员名单。可当初的
abstracts都没有了。
也就是说只能证明参加过会议,但abstracts没有;海报,幻灯倒是可以附上。
我好奇大家都能找到每个会议的abstracts吗?我参加过的也算是行业里比较重要的会
了,可是基本都没有任何的出版物收录摘要什么的。感觉这个摘要实在不重要啊,就是
当初参会时提交一个,主办方从里面挑出能做talk的,其余的都Poster.难道大家的会
议不是这样的吗?
m******0
发帖数: 90
37
如何可以claim,那exhibit如何准备呢?就把abstract打印出来?一般abstract和别的
很多abstract在同一页啊。谢谢!
o**d
发帖数: 11
38
来自主题: Java版 - Re: How to use abstract class?
OK. Since it is a ABSTRACT class, it is not possible to
instantiate it. What you need to do is to create a a
subclass to FontMetrics, which implements all the abstract
methods in FontMetrics. Then you could write code like:
FontMetrics myMetrics = new FontMetricsSubClass(newfont);
If you have an abstract method in FontMetrics, say
myMethod(). When you call myMentrics.myMethod(), it will
find the real object it points to and run the implementation
in FontMetricsSubClass. It is called dynamic bind
a****i
发帖数: 1182
39
来自主题: Java版 - 再论abstract class
你的 AnimalHandler 没有深入,这个其实应该是一个abstract class的
下面有CatHandler,DogHandler
在AnimalHandler里,sing()要怎么写?它不可能象你说的那么简单,就只是
println(animal.getName() + "sing");
起码应该是
if (animal instanceof Cat)
println ("Moew");
else (animal instanceof Dog)
println ("Woof");
else
println ("animal not recognized");
如果要加一个动物呢?必须改AmimalHandler了吧?好不好且不说,有时候你还改不了
因为那个代码的owner不是你,是其他group。你有的只是.class
把sing()改成abstract,由CatHandler, DogHanler分别实现
添加一个动物,比如说猪,只要加PigHandler,然后把它inject就好了
这个就是“便于扩展”
如果你把AnimalHandler... 阅读全帖
a****i
发帖数: 1182
40
来自主题: Java版 - 再论abstract class
你的 AnimalHandler 没有深入,这个其实应该是一个abstract class的
下面有CatHandler,DogHandler
在AnimalHandler里,sing()要怎么写?它不可能象你说的那么简单,就只是
println(animal.getName() + "sing");
起码应该是
if (animal instanceof Cat)
println ("Moew");
else (animal instanceof Dog)
println ("Woof");
else
println ("animal not recognized");
如果要加一个动物呢?必须改AmimalHandler了吧?好不好且不说,有时候你还改不了
因为那个代码的owner不是你,是其他group。你有的只是.class
把sing()改成abstract,由CatHandler, DogHanler分别实现
添加一个动物,比如说猪,只要加PigHandler,然后把它inject就好了
这个就是“便于扩展”
如果你把AnimalHandler... 阅读全帖
b***i
发帖数: 3043
41
来自主题: Programming版 - Java abstract vs interface
Java 8 里面加入了default/static的实现,这样abstract和interface就更像了。
我在想,为什么么呢?不是可以用以前的abstract来实现这些吗?比如interface
testa 定义了doit(); doagain();需要实现doagain,好在abstract class impA里面实
现doagain好了。然后继承impA的类都得实现doit();不用实现doagain。
到底什么原因导致Oracle要在interface里面加入default metod?
T*******n
发帖数: 493
42
What document class? Book or report or something similar?
In these classes the heading for "Abstract" is set using
\chapter*{Abstract}, and \chapter* includes a hidden command
\setcounter{topnumber}{0}, which prevents a float from going
to the top of the page (above the heading "Abstract"). If
you have a small figure it might go to the bottom of the
page if you allow it, but if the figure is too large, it
will be moved to the next page.
Since you just want an unnumbered figure, try using
\begi
l*********s
发帖数: 5409
43
All right, this answer is correct, though not very complete. The trick is put the abstract command in the argument parameter for \towcolumn, as shown below:
\twocolumn[\begin{@twocolumnfalse}
\maketitle
\begin{abstract}
... ...
\end{abstract}
\end{@twocolumnfalse}
]
bao zi sent out, thank you for your tip!
S***6
发帖数: 431
44
老板人一直很nice,但是最近很奇怪,最近两个meeting的abstract,他都把自己列第
一作者,把我老人家放在最后,貌似我是corresponding author似的,这其中有什么玄
机吗?
是不是因为abstract今后被引用的时候大家只会看到first author的名字啊?虽然这个
项目我是主要贡献人,他是sponsor和PI。不过今后发正式的文章我肯定是第一作者,
这个不会担心,已经合作这么多年了,都是这样。但还是有点感到奇怪。是不是如果这
个abstract很好的话,他会被邀请做oral presentation? 他都已经50的人,应该不会
因为这个和我抢机会吧?
随便问问... ...
q***i
发帖数: 170
45
来自主题: Macromolecules版 - help on PMSE abstract
Could anyone get the abstract of the following for me? Thanks!
Please send to q*******[email protected]
Title: Saxs study of elongated ionic clusters in poly-perfuorosulfonic acid
membranes.
Author(s): Londono JD, Davidson RV, Mazur S
Source: ABSTRACTS OF PAPERS OF THE AMERICAN CHEMICAL SOCIETY 222: U342-U342
14-PMSE Part 2, AUG 2001
Document Type: Meeting Abstract
Language: English
Cited References: 0 Times Cited: 0
Addresses: Dupont Co Inc, Cent Res & Dev, Expt Stn, Wilmington, DE 19880 USA
j******g
发帖数: 171
46
来自主题: MedicalCareer版 - Resident and student abstract awards
Resident and student abstract awards
The Student, Resident and Fellow Committee and the Research Committee of
Associatin of Chinese American Physicians (ACAP) are coordinating a
scientific poster session at her annual convention on May 23, 2010.
One or three abstract awards are planned to present to the best abstracts!
Chinese Medical Graduate and resident members of ACAP are welcome to present
and compete for the award(s). More updates are coming...
S*A
发帖数: 129
47
我觉得花太多时间在这个上面不值得。
UW上的drug ad/research abstract题目偏难,实际考试的都比较直接,顶多一两个题
绕一下。如果你的统计和流行病学基本概念清楚,先看问题,然后快速扫drug ad/
research abstract,一般都会找到答案。如果找不到,那问题太难,就像其他CK难题
一样,你只能先跳过去,节省时间去做其他的题。答对所有会做的题就不容易了,我认
为。
NEJM杂志上有时候有些Drug ad,但是都很简单,我还真找不到难度和UW差不多的drug
ad,想想做广告如果做到别人需要绕半天才明白也算是失败吧。Abstract主要取决于研
究训练背景,想通过突击来提高恐怕不如把时间花在其他更HY的内容上,比如内科鉴别
诊断上。

发帖数: 1
48
来自主题: Military版 - 到今天才知道啥是Abstraction
但也想抢口马工的饭吃
每次面试,问abstraction, 还有 abstract class,
答了后就没消息,难道和这个有关?

发帖数: 1
49
【 以下文字转载自 Faculty 讨论区 】
发信人: xw11 (stl), 信区: Faculty
标 题: PM要abstract了,会不会因为疫情最后没钱发?
发信站: BBS 未名空间站 (Wed Apr 1 23:47:36 2020, 美东)
这个proposal折腾好几次了,终于被要abstract,快被recommend了。因为疫情,联邦
会不会最后没钱发啊?担心啊,等米下锅。Proposal是去年年底投的,项目今年9月初
开始。有经验的请谈谈,特别是经过08年经济大萧条的前辈。
l****a
发帖数: 336
50
前面寄过去的abstract包括3个projects,2个phd的,一个post-doc的,现在发现讲的
内容太多了,想把第三个post-doc的project去掉,这样做可以吗,需要send一个更新
的abstract吗?
谢谢!
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)