由买买提看人间百态

topics

全部话题 - 话题: setter
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
c**s
发帖数: 159
1
国内CS phD new grad
搭车求
c******[email protected]
cv
I'm a PhD. Candidate in China who will graduate in July 2013. I got
the bachelor's degree of Computer science in Zhejiang University 2006. My
major is social computing,social media, search. I also have some experience
in AI. I study in Institute of Computing technology Chinese Academy of
Sciences.
I'm familiar with C/C++, data structures and algorithms. I have
experience in java, javascript, HTML5, SQL. I used database SQL-SERVER,
MYSQL and O... 阅读全帖
z*******3
发帖数: 13709
2
来自主题: JobHunting版 - Java编程讨论:LinkedIn的H2O
isH()和isO()要扩展一下,要额外加一个类
包装thread对象以及该thread读取的是o还是h
要不然thread本身是没有这个方法的
class ThreadInfo{
private Thread thread;
private boolean isH;
//setter/getter method
...
}
然后把l里面保存的全部换成ThreadInfo对象
z*******3
发帖数: 13709
3
来自主题: JobHunting版 - Java编程讨论:LinkedIn的H2O
isH()和isO()要扩展一下,要额外加一个类
包装thread对象以及该thread读取的是o还是h
要不然thread本身是没有这个方法的
class ThreadInfo{
private Thread thread;
private boolean isH;
//setter/getter method
...
}
然后把l里面保存的全部换成ThreadInfo对象
z*******3
发帖数: 13709
4
来自主题: JobHunting版 - 准备总结一下design pattern了
用得不少
很多人认为要尽一切可能用spring
不能说为了不写singleton用spring
除此之外还有额外的好处
比如spring同时也实现了抽象工厂模式,剥离了类之间的耦合
spring是一堆东西的集合
using a factory pattern
using a service locator pattern
using a dependency injection, for example:
a constructor injection
a setter injection
an interface injection
using a contextualized lookup

singleton
a**********3
发帖数: 64
5
来自主题: JobHunting版 - @synthesize的问题
Objective C里,这个synthesize我不太懂,@synthesize name = _name; 这个name 和
_name是杀关系?上网搜了,说是create getter和setter, 但是搞不清这个name和_
name咋用,求指点,多谢!
★ 发自iPhone App: ChineseWeb 7.8
s*******n
发帖数: 305
6
来自主题: JobHunting版 - 请教面试时的代码规范
我觉得的可以写成简单的, 否则写的很规范会很花时间, 写之前解释一下是不是就行
了, 别让以为你平时也是这么写的就好?
例如
java members 都要用getter 和 setter, 你都写出来岂不太花时间,
l********9
发帖数: 8
7
来自主题: JobHunting版 - 说一下学术派的代码(java)
你说的只是代码的规范,一个好的SD在乎的是代码的质量和效率,我在的AGILE TEAM很
少在乎代码的规范化,我们甚至所有的APP都没有DOC, WEB SERVICE除外。你说的
GETTER/SETTER也只是NEWBIE的感觉,我还是比较喜欢用BUILDER FACTORY
l********9
发帖数: 8
8
来自主题: JobHunting版 - 说一下学术派的代码(java)
ALTERNATIVE TO SETTER/GETTER
z****e
发帖数: 54598
9
来自主题: JobHunting版 - 说一下学术派的代码(java)
问题在于setter/getter压根不是用作构造的
任何builder都跟dp有关系,人家起名时候就告诉你了
a****n
发帖数: 1887
10
来自主题: JobHunting版 - 说一下学术派的代码(java)
MVC 是web GUI的实现方式, 和具体web 内部的entity 没太大关系
MVC的M 一般是DTO, 只是struct, 而不是class
而 setter/getter 一般不会同时加到 variable, 否则你就得考虑你的class的
cohesion和coupling 是不是有问题。

模式
a****n
发帖数: 1887
11
来自主题: JobHunting版 - 说一下学术派的代码(java)
从概念上来说 class 是 expose behavior, struct 是 expose data.
java 没有struct keyword, 但是java 里面struct 可以通过两种方式来实现,
1. setter/ getter
2. public memeber variable
hibernate mapping的是structs, 而不是class,
如果自己要写的struct直接用public variable更方便
e********3
发帖数: 18578
12
来自主题: JobHunting版 - 请问大牛们,设计题如何复习?
我抛砖一下。
你没有提到Interface,这个在具体实现中也是很重要的。 C++可以用Multiple
Inheritance,可能不需要用Interface也可以。
具体实现的时候还可以考虑Observer Pattern, Iterator Pattern, Builder Pattern,
Decorator Pattern这些。
OOP设计还要遵循SOLID原则:
Single responsibility principle
Open/Closed principle (Open for extension and closed for modification, aka,
inheritance and encapsulation)
Liskov substitution principle (polymorphism)
Interface segregation principle (more simple stuff is better than less
complicated stuff)
Dependency injection principle (high ... 阅读全帖
e********3
发帖数: 18578
13
来自主题: JobHunting版 - 请问大牛们,设计题如何复习?
我抛砖一下。
你没有提到Interface,这个在具体实现中也是很重要的。 C++可以用Multiple
Inheritance,可能不需要用Interface也可以。
具体实现的时候还可以考虑Observer Pattern, Iterator Pattern, Builder Pattern,
Decorator Pattern这些。
OOP设计还要遵循SOLID原则:
Single responsibility principle
Open/Closed principle (Open for extension and closed for modification, aka,
inheritance and encapsulation)
Liskov substitution principle (polymorphism)
Interface segregation principle (more simple stuff is better than less
complicated stuff)
Dependency injection principle (high ... 阅读全帖
e********3
发帖数: 18578
14
实际写代码还需要写comment,还要写getter,setter,如果比较复杂的话还要考虑
Interface和Abstract Class,最后还要写Unit Test,好几个模块还要写Integration
Test, 不过这些我都忽略了,但是一定要跟面试官说,表示你知道,不过因为时间紧迫
就只能忽略了,实际工作中一定会补上的。
m*****k
发帖数: 731
15
来自主题: JobHunting版 - 一道面试题。
一道店面
public class RatePeriod {
private Date startDate;
private Date endDate;
private Integer nightlyRate;
/* Assume getters, setters, hashCode, equals, toString have been impl’d
. */
}
/**
Returns a flattened list of rate periods where “flattened” means that any
overlaps have been resolved by favoring the greatest nightlyRate for the
duration of the overlap.
Example:
flatten [(2015-01-01, 2015-12-31, 125), (2015-03-07, 2015-03-21, 175)]
Output:
[(2015-01-01, 2015-03-06, 125),
(20... 阅读全帖
m*****k
发帖数: 731
16
来自主题: JobHunting版 - 新店面
一道店面
public class RatePeriod {
private Date startDate;
private Date endDate;
private Integer nightlyRate;
/* Assume getters, setters, hashCode, equals, toString have been impl’d
. */
}
/**
Returns a flattened list of rate periods where “flattened” means that any
overlaps have been resolved by favoring the greatest nightlyRate for the
duration of the overlap.
Example:
flatten [(2015-01-01, 2015-12-31, 125), (2015-03-07, 2015-03-21, 175)]
Output:
[(2015-01-01, 2015-03-06, 125),
(20... 阅读全帖
p*********g
发帖数: 116
17
来自主题: JobHunting版 - 设计一个银行系统
9 steps to better software design today, by Jeff Bay
The Rules
One level of indentation per method
Don’t use the ELSE keyword
Wrap all primitives and Strings
First class collections
One dot per line
Don’t abbreviate
Keep all entities small
No classes with more than two instance variables
No getters/setters/properties
这个是真的还是笑话呀?
x***4
发帖数: 1815
18
来自主题: JobHunting版 - 看到好多人骂scala
这个不用太担心,spark里面的scala主要是oop写的,到处是setter,很少用fp。有
java基础的,要看懂不难。要写的话就熟悉一下语法就行。
b**********h
发帖数: 419
19
来自主题: JobHunting版 - 这个五轮面试像不像绿卡广告
(zz)
刚从San Francisco归来,敲下这篇文章纪念一下人生第一次software onsite面试,顺
便攒个人品
Lending Club. 全美第一大的在线信贷公司
面的software engineer – new grad
一共五轮。
第一轮, 印度小哥, 人很nice。 简单问了一下简历,然后介绍了一下公司,就开始
做题了。两道Leetcode原题33, 19。Easy.
第二轮,印度大哥。明显比之前的要资历深。同样一上来聊了一下简历。稍微深入的问
了一下细节,比如简历里提到的东西你怎么用的 。接着就问了我简历上的一个
database design。涉及到了oneto one, one to many 还有many to many的关系下每个
表格该怎么设计。噢,一开始还问了HashMap如果map的是differentobject in same
class with extract same value的情况下如何保证不让它被override。以及正常情况
下如果有duplicatekey该如何处理
第三个人,白人小哥。一上来说自己啥都没有准备,我们就来做做... 阅读全帖
G****A
发帖数: 4160
20
来自主题: JobHunting版 - Re: 你为什么写public?
到底问的什么题?
有些function,比如getter,setter 只能public。有些明显内部逻辑是不应该public

:昨天卖力的一architect店面。出了一道题目,我刚写public int solution(int[]
arr) {

发帖数: 1
21
巨人支付总部在纽约华尔街的第三方支付公司
近几年的成长,让巨人支付在本行业中发展迅速,成为该行业的领头公司之一。成为全
美第四大,纽约最大的第三方支付公司。现由于现业务扩张,诚聘Financial
Representative,operation assistant,customer service,接受OPT, CPT,留学生
有机会获得H1B。
Sales Associate:
1. 分析客户产品使用数据,为客户提供优化方案
2. 熟练掌握行业知识,公司产品知识,与客户进行沟通,谈判以及产品展示
3. 负责公司产品在全美国宣传及推广,通过各种渠道发展新客户
4. 维护客户关系,与客户建立良好的信任与互动关系
Appointment Setter:
1.搜集潜在客户信息,业务拓展
2.通过电话为客户提供详细的咨询服务,解释产品或服务和价格,解答客户的提问
3. 获取客户信息,如姓名,地址,和支付方式,并整理客户数据
4.为资深顾问制定出差路线,协助其安排日程客户会见
职位要求:
1.有责任心,上进心,做事细心,有耐心
2.积极主动,有较强的沟通能力
3.有冒险,乐于挑战的精神
4.... 阅读全帖

发帖数: 1
22
Argus Merchant Services 巨人商务平台是全美最大的华人信用卡处理机构之一,目前
主要产品和服务包括各种信用卡处理,POS机销售和租凭,提供贷款,顾客优惠券,网
页制作,ATM机等等。为Visa,Mstercard,Discover和American Express官方注册的支
付处理机构。公司总部坐落于世界金融中心——华尔街。目前公司业务广布全美各州各
地,为上万家餐馆,美甲店,超市,零售商,批发商,及各类商家提供服务,知名合作
伙伴包括Dolce&Gabbana,麒麟金阁,caffe bene等。公司相关介绍请参考:http://argusinvision.com/
1. Appointment Setter电话预约
【职位描述】:
• 搜索潜在客户信息,充分利用各个电脑操作软件和搜索引擎
• 获取客户信息,如姓名,地址,和支付方式,并整理客户数据
• 为资深代表顾问制定出差路线,协助其安排日程客户会见
【职位要求】:
• 反应快,思维敏捷,学习能力强
• 有团队合作精神,... 阅读全帖

发帖数: 1
23
Argus Merchant Services 巨人商务平台是全美最大的华人信用卡处理机构之一,目前
主要产品和服务包括各种信用卡处理,POS机销售和租凭,提供贷款,顾客优惠券,网
页制作,ATM机等等。为Visa,Mstercard,Discover和American Express官方注册的支
付处理机构。公司总部坐落于世界金融中心——华尔街。目前公司业务广布全美各州各
地,为上万家餐馆,美甲店,超市,零售商,批发商,及各类商家提供服务,知名合作
伙伴包括Dolce&Gabbana,麒麟金阁,caffe bene等。公司相关介绍请参考:http://argusinvision.com/
1. Appointment Setter电话预约
【职位描述】:
• 搜索潜在客户信息,充分利用各个电脑操作软件和搜索引擎
• 获取客户信息,如姓名,地址,和支付方式,并整理客户数据
• 为资深代表顾问制定出差路线,协助其安排日程客户会见
【职位要求】:
• 反应快,思维敏捷,学习能力强
• 有团队合作精神,... 阅读全帖

发帖数: 1
24
巨人支付招聘各个职位~~~H1B sponsorship
Argus Merchant Services 巨人商务平台是全美最大的华人信用卡处理机构之一,目前
主要产品和服务包括各种信用卡处理,POS机销售和租凭,提供贷款,顾客优惠券,网
页制作,ATM机等等。为Visa,Mstercard,Discover和American Express官方注册的支
付处理机构。公司总部坐落于世界金融中心——华尔街。目前公司业务广布全美各州各
地,为上万家餐馆,美甲店,超市,零售商,批发商,及各类商家提供服务,知名合作
伙伴包括Dolce&Gabbana,麒麟金阁,caffe bene等。公司相关介绍请参考:http://argusinvision.com/
1. Appointment Setter电话预约
【职位描述】:
• 搜索潜在客户信息,充分利用各个电脑操作软件和搜索引擎
• 获取客户信息,如姓名,地址,和支付方式,并整理客户数据
• 为资深代表顾问制定出差路线,协助其安排日程客户会见
【职位要求】:
• 反应快,思... 阅读全帖
u****q
发帖数: 24345
25
要用nail setter。
包子,两个,请。
L**P
发帖数: 3792
26
来自主题: Living版 - 请教如何装window casing
1 firs step is cutting and installing: miter saw, nails, nail setter and
hammer
2 second step is paiting: spackling, paint, paint tape, and paint brush
m*f
发帖数: 3078
27
来自主题: Living版 - 地面倾斜,怎么铺地板?
But The Other Guy Said I Need A Level Subfloor
I have yet to run into a hardwood installer that has a level in his tool bag
. Levels are for block masons, trim carpenters, or marble tile setters. Sure
some installation instructions may say level but they're really trying to
say flat. Specifications call for subfloors being within a tolerance of 3/16
of one inch over a span of eight to ten feet. In other words, if there is a
dip in the middle that measures 1/4" from each side in a ten foot range ... 阅读全帖
o*********r
发帖数: 203
28
来自主题: Living版 - how to drive nails without nail gun
Search nail setter kit.
b******r
发帖数: 16603
29
http://blogs.telegraph.co.uk/finance/ambroseevans-pritchard/100
The debt markets have been warned.
A key rate setter-for China's central bank let slip – or was it a slip? –
that Beijing aims to run down its portfolio of US debt as soon as safely
possible.
"The incremental parts of our of our foreign reserve holdings should be
invested in physical assets," said Li Daokui at the World Economic Forum in
the very rainy city of Dalian – former Port Arthur from Russian colonial
days.
"We would like to... 阅读全帖
c***z
发帖数: 6348
30
节选自http://michaelochurch.wordpress.com/2013/04/03/gervais-macleod-21-why-does-work-suck/
[Companies] have several phases, each deserving its own moral stance:
Financial risk transfer. Entrepreneurs put capital and their reputations at
risk to amass the resources necessary to start a project whose returns are (
macroscopically, at least) convex. This pool of resources is used to pay
bills and wages, therefore allowing workers to get a reliable, recurring
monthly wage that is somewhat less than th... 阅读全帖
L***z
发帖数: 454
31
来自主题: HongKong版 - where to watch Australian Open online
I did not subscribe to Star Sports (which is available only through a
package) and do not have time to watch at home due to work schedule. I
bought Australian Open online access (official) but found it's not available
to HK residents for live coverage. It does not have replay either.
I google online TV coverage but found I cannot get access to websites like
sopcast.
For the first I felt so helpless. Could someone help! I really felt very bad
when I had to miss the 5-setters yesterday between Fed
z*********n
发帖数: 94654
32
来自主题: LosAngeles版 - BSO一下脸皮薄
最主要我住的地方东西不靠的,nnd,那个hanger16还算最近的,太多差评了...
这家一样的距离,网上全是好评
无论如何,先看看再说了
看评论说这家最爽的地方是用的certified setter,所以路线make sense
很多地方据说就是人么瞎弄的,很多人爬了很郁闷
r********e
发帖数: 1059
33
hitter or setter.
t*****r
发帖数: 4431
34
It’s Bellevue vs. Seattle in battle of holiday magic and shoppers
By Lynn Thompson
Seattle Times staff reporter
Even before the delight and madness of Black Friday, the state’s two retail
leaders — Bellevue and Seattle — were preparing for the spending hordes.
At Westlake Park, workers wrestled antique horses into place on the holiday
carousel. At Bellevue Square, the mall’s scene-setters plumped teddy bears
at Santa’s workshop, the setting, over the coming month, for about 40,000
photos with th... 阅读全帖
n******r
发帖数: 9146
35
setters way 和 Austin pkwy 怎么样?
p****u
发帖数: 74
36
2011年底自己家厨房装修用的是:
厨柜,backsplash : Rockywood cabinet in Richardson
Painting: Martinez painting, 817-3691240
地砖:master tile setter
他们做工和价钱都不错。
W*******e
发帖数: 1268
37
来自主题: WashingtonDC版 - Java开发人员知识点
先抛砖引玉总结一下个人使用Java经历,从用HotJava开始,第一个IDE用的是Symatec
Cafe,到现在的Eclipse和JDeveloper,看看知识有没有跟上现在的潮流,需要哪些改
进的地方请砸砖。对新的Java开发员如果有用的地方请给包子鼓励。
Java开发人员知识点
1.听说过James Gosling,SUN和Oracle公司。知道网上下载Java的地址,在哪讨论Java
。练习过Java在Windows下的安装和配置。知道Java应用系统中常见的几种license。了
解bytecode和Java在不同系统下可以轻松移植的原理。
2.懂得基本的Java编程和行命令格式。了解面向对象的编程思路。
几个基本点:Java基本语法和控制结构,命名和代码风格,结构化,对象封装,继承,
抽象,多态,接口,异常处理,堆空间,栈空间,垃圾回收器,static,this,
synchronized,annotations,JUnit,JDBC,JSP/servlet
Java Core APIs: java.lang,java.util,java.io,java.awt,javax... 阅读全帖
x**n
发帖数: 12542
38
来自主题: WashingtonDC版 - [合集] Java开发人员知识点
☆─────────────────────────────────────☆
Westridge (西岭) 于 (Wed Apr 18 00:03:19 2012, 美东) 提到:
Java开发人员知识点
1.听说过James Gosling,SUN和Oracle公司。知道网上下载Java的地址,在哪讨论Java
。练习过Java在Windows下的安装和配置。知道Java应用系统中常见的几种license和JCP。了
解bytecode和Java在不同系统下可以轻松移植的原理。
2.懂得基本的Java编程和行命令格式。了解面向对象的编程思路。
几个基本点:Java基本语法和控制结构,命名和代码风格,结构化,对象封装,继承,
抽象,多态,接口,异常处理,堆空间,栈空间,垃圾回收器,static,this,
synchronized,annotations,JUnit,JDBC,JSP/servlet
Java Core APIs: java.lang,java.util,java.io,java.awt,javax.swing,JFrame
,String,java.sql... 阅读全帖
F*V
发帖数: 3978
39
来自主题: CanadaNews版 - Eve of Disaster. a well written article
Eve of Disaster
Why 2013 eerily looks like the world of 1913, on the cusp of the Great War.
BY CHARLES EMMERSON
The leading power of the age is in relative decline, beset by political
crisis at home and by steadily eroding economic prowess. Rising powers are
jostling for position in the four corners of the world, some seeking a new
place for themselves within the current global order, others questioning its
very legitimacy. Democracy and despotism are locked in uneasy competition.
A world econom... 阅读全帖
c******m
发帖数: 300
40
来自主题: Badminton版 - 参观上海市队
我到了上海, 先跟老郭打电话.
老郭说这个礼拜主力队员出赛, 所以他不用天天去队里.
因为我也有公事, 所以约了星期五去队里.
上海队训练基地在离上海市约有一小时的车程, 在青浦.
到了哪儿之后, 看到了一个超大超高的体育馆写着 "羽毛球馆".
我们到的时候, 刚好看到女排队上训练, 除了 setter 之外, 每个大概都比我高半个到
一个头. 不禁感叹中国现在的小孩营养好啊.
n*n
发帖数: 1378
41
来自主题: Badminton版 - 参观上海市队
啥是setter?
c******g
发帖数: 19294
42
来自主题: Basketball版 - 湖人就不能打什么三角进攻
maybe setter
c****1
发帖数: 5654
43
来自主题: Basketball版 - which position do u guys play usually?
guess not many centers here..
any good point guard here? that position is kind of like a setter in
volleyball, not easy to find a great one.
myself played small forward all the time during my 10 year basketball
period.
T**r
发帖数: 7016
44
可以啊,我下一个婆姐就是给俺的cz75sp01整一个套套,
热压的东西现成的在knifekits.com上有卖,一套将近100,我是找两块木头板,几块泡
沫,叠起来DIY的。
做Kydex刀鞘,枪套一般来说需要以下设备:
Kydex sheet,
刀模或者枪模,或者实体
oven或者mini oven,如果做的东西不大,用heat gun也行
heat gun,用来做局部调整
kydex press,就是木板或者铁板夹泡沫用来压kydex成形的,可以DIY,我的是DI
Y,泡沫还没有找到最合适的
rivets或者eyelets,还有setter,
optional:
arbor press,用来set rivets/eyelets,用钉锤也行
drill press. 用来钻孔,用电钻也行
bandsaw. 用来切割,用大剪刀也行
belt sander. 用来打磨,用砂纸,锉刀都行
c****1
发帖数: 5654
45
来自主题: Fitness版 - 健身新手求指教(附照片)

depends on your goal..
if it is for your sports performance, don't pump up your chest,
instead, work out more your thighs/butt...
ur position in VB is called OPP --- opposite of the setter.
D****o
发帖数: 12808
46
☆─────────────────────────────────────☆
wslbb (Gritty) 于 (Sat Dec 22 21:23:30 2012, 美东) 提到:
经常跑步,半马2"10 左右,偶尔做push-up, 引体向上,哑铃(每周<1次)现在想加
强/改善体型,每周1-2次能做到吗?如何做最有效?求建议。
★ Sent from iPhone App: iReader Mitbbs Lite 7.56
☆─────────────────────────────────────☆
wslbb (Gritty) 于 (Sat Dec 22 21:38:26 2012, 美东) 提到:
请问怎么从iPhone 贴照片?

☆─────────────────────────────────────☆
Sleepingbag (脑残代数几何学家) 于 (Sat Dec 22 21:41:29 2012, 美东) 提到:
如果是男的 半马210太慢了
☆─────────────────────────────────────☆
... 阅读全帖
o**********n
发帖数: 592
47
来自主题: loseweight版 - 天一黑,跑步的人太少了
我觉得有只狗在身边一起跑,有安全感得多,嘿嘿。尤其是在黑暗之中。
我家两支狗。一只english setter,比较苗条,能拖着我一起跑。一只alaskan
malamute,体重超重,被我拖着跑。
我个人觉得大狗要好一些。
p*********l
发帖数: 26270
48
来自主题: loseweight版 - 闲话spin/cycling/动感单车
可是关于spin我的确比你懂得多,连老师都说我很advanced了,虽然练的时间不长,
现在老师不想骑的时候叫我去前面领骑,我是pace setter和role model,我还真不觉
得自己没有资格写这个心得 -- 发心得给大家分享有什么错?spin练的是屁股,有啥有
脸没脸的?
你要正经练练roadie,上来写心得,言之有物,一样欢迎啊!attention是靠个人经验
和发贴内容来换的。。。我正在买车,你要是写个买roadie的经验分享或者车型review
,我也给你大包子
s******e
发帖数: 1985
49
Cindy Zhou, setter, 6'0
Birthday: Dec. 27, 1994 ... Daughter of Qian Zhou and Wendy Tian.
s********d
发帖数: 1416
50
来自主题: NCAA版 - 有人看ncaa w volleyball 吗
现在 penn state 对 washington
去年setter 受伤了, 今年我狮再来
我狮有两年没夺冠了
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)