丁一 发表于 2013-2-27 00:48

lfcxylwj 发表于 2013-2-27 00:59

napa6101 发表于 2013-2-27 01:12

mark逃避現实
為何我碰不到

nylonchina 发表于 2013-2-27 01:25

manyo 发表于 2013-2-27 07:38

kanabi 发表于 2013-2-27 08:38

这称号no law to see

say_gg_plz 发表于 2013-2-27 08:38

*道界的乔布斯

星空寂 发表于 2013-2-27 08:48

我便是预料不到这战斗力啊

warlock228 发表于 2013-2-27 08:50

X道界乔布斯
一定是骗人的 哪有会有天才高中码农少女还会倒贴

arthes 发表于 2013-2-27 09:42

骗人 办公室里男女比例反了

dodolee 发表于 2013-2-27 09:54

男主电车上手里拿的似乎是四人组的《设计模式》……

紫眼 发表于 2013-2-27 10:27

X道界的乔布斯给跪了

luckey2 发表于 2013-2-27 10:28

X道界的乔布斯

kapwlwb 发表于 2013-2-27 11:51

给跪 码农回去好好沉思一下

allenz 发表于 2013-2-27 12:54


public class MyGirl {

    // Use keyword 'protected' so others inherit 'MyGirl'
    // can touch her field or method,
    // for example: public class HisGirlNow extends MyGirl
    protected int breast;
    protected int looks;
    protected int leg;
    protected int body;

    protected MyGirl(Builder builder) {
      this.breast = builder.breast;
      this.looks = builder.looks;
      this.leg = builder.leg;
      this.body = builder.body;
    }

    protected void doSomething() {
      // TODO:evil
    }

    public static void main(String[] args) {
      MyGirl myGirl = new MyGirl.Builder((new MyFeatures()).add("otaku").add(
                "programmer")).Breast(Breast.D_CUP).Looks(Looks.BEATIFUL)
                .Leg(Leg.THIN).Body(Body.AVERAGE).build();
      myGirl.doSomething();
    }

    public static class Builder {
      private int breast = Breast.A_CUP;
      private int looks = Looks.UGLY;
      private int leg = Leg.FAT;
      private int body = Body.FAT;

      private MyFeatures myFeatures;

      public Builder(MyFeatures myFeatures) {
            this.myFeatures = myFeatures;
      }

      public MyGirl build() {
            if (this.myFeatures.contains("otaku")
                  || this.myFeatures.contains("programmer")) {
                if (this.breast > Breast.A_CUP || this.looks > Looks.AVERAGE
                        || this.leg < Leg.FAT || this.body < Body.FAT) {
                  throw new Error("This not science!");
                }
            }
            return new MyGirl(this);
      }

      public Builder Breast(int breast) {
            this.breast = breast;
            return this;
      }

      public Builder Looks(int looks) {
            this.looks = looks;
            return this;
      }

      public Builder Leg(int leg) {
            this.leg = leg;
            return this;
      }

      public Builder Body(int body) {
            this.body = body;
            return this;
      }

    }
}

fenfen 发表于 2013-2-27 13:31

我竟然按着Ctrl点了doSomething();一下

assilzm 发表于 2013-2-27 13:58

引用第14楼allenz于2013-02-27 12:54发表的  :

public class MyGirl {

    // Use keyword 'protected' so others inherit 'MyGirl'
    // can touch her field or method,
....... images/back.gif


大大 我运行报错怎么办!


Error:This not science!
    at MyGirl.newInstance0(Native Method)
    at MyGirl.newInstance0(MyGirl.java:46)
    at MyGirl.newInstance0(MyGirl.java:42)
    at MyGirl.newInstance0(MyGirl.java:41)
    at MyGirl.newInstance0(MyGirl.java:23)

天神十三煞 发表于 2013-2-27 15:12

可以越狱吗?

treexper 发表于 2013-2-27 15:51

当年做SE的时候更像在跑营业,先到客户那边卖中间件,各种吹牛。

uroko 发表于 2013-2-27 16:07

http://baike.baidu.com/view/4276833.htm

我还以为是说这个……

小姜不辣 发表于 2013-2-27 16:09

乔布斯什么时候是码农了?

zorrozww 发表于 2013-2-27 16:33

引用第14楼allenz于2013-02-27 12:54发表的:

public class MyGirl {

    // Use keyword 'protected' so others inherit 'MyGirl'
    // can touch her field or method,
....... images/back.gif


我觉得这个程序可以精简一下













你直接把那个"This not science!" throw出来不就好了吗!

skyhigh 发表于 2013-2-27 16:48

关注中,乔布斯教主不死!

牧云若桐 发表于 2013-2-27 16:52

原来早上在微博看到的图出自这里啊。好评!

9616777 发表于 2013-2-27 18:13

ccloli 发表于 2013-2-27 18:35

TENGA赶紧出电动版吧,叫iCup好了,最好开放接口

iou90 发表于 2013-2-27 19:20

引用第10楼dodolee于2013-02-27 09:54发表的:
男主电车上手里拿的似乎是四人组的《设计模式》…… images/back.gif


不合逻辑啊不合逻辑
女主既然是做人工xx 那么应该是写硬件驱动的吧 为啥会对拿着设计模式这种讲OO的书的男主微笑呢

话说 奋斗吧 系统工程师 超有趣的,第六本啥时候来=.=

斜阳 发表于 2013-2-27 19:46

乔布斯投胎做人工X道……

子戏星斋 发表于 2013-2-27 20:06

引用第19楼uroko于2013-02-27 16:07发表的:
http://baike.baidu.com/view/4276833.htm

我还以为是说这个…… images/back.gif

我就知道会有人提这个

丁一 发表于 2013-3-5 23:33

fenghou 发表于 2013-3-6 00:28

-- “你可以new一个女碰友”
-- “那一定要记得用unique_ptr”

月初照 发表于 2013-3-6 09:24

又到了需要new一个女朋友的时候了呢

alaya 发表于 2013-3-6 11:16

O道界的乔布斯

能越狱吗
页: [1]
查看完整版本: [码农法师必看][此ノ木よしる] SE (29L更新第2话图源)