找回密码
 立即注册
搜索
查看: 4374|回复: 32

[讨论] [码农法师必看][此ノ木よしる] SE (29L更新第2话图源)

[复制链接]
头像被屏蔽
发表于 2013-2-27 00:48 | 显示全部楼层 |阅读模式
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

头像被屏蔽
发表于 2013-2-27 00:59 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

发表于 2013-2-27 01:12 | 显示全部楼层
mark逃避現实
為何我碰不到
回复

使用道具 举报

头像被屏蔽
发表于 2013-2-27 01:25 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

头像被屏蔽
发表于 2013-2-27 07:38 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

     
发表于 2013-2-27 08:38 | 显示全部楼层
这称号no law to see
回复

使用道具 举报

     
发表于 2013-2-27 08:38 | 显示全部楼层
*道界的乔布斯
回复

使用道具 举报

发表于 2013-2-27 08:48 | 显示全部楼层
我便是预料不到这战斗力啊
回复

使用道具 举报

     
发表于 2013-2-27 08:50 | 显示全部楼层
X道界乔布斯
一定是骗人的 哪有会有天才高中码农少女还会倒贴
回复

使用道具 举报

     
发表于 2013-2-27 09:42 | 显示全部楼层
骗人 办公室里男女比例反了
回复

使用道具 举报

     
发表于 2013-2-27 09:54 | 显示全部楼层
男主电车上手里拿的似乎是四人组的《设计模式》……
回复

使用道具 举报

     
发表于 2013-2-27 10:27 | 显示全部楼层
X道界的乔布斯给跪了
回复

使用道具 举报

发表于 2013-2-27 10:28 | 显示全部楼层
X道界的乔布斯
回复

使用道具 举报

发表于 2013-2-27 11:51 | 显示全部楼层
给跪 码农回去好好沉思一下
回复

使用道具 举报

发表于 2013-2-27 12:54 | 显示全部楼层
  1. public class MyGirl {
  2.     // Use keyword 'protected' so others inherit 'MyGirl'
  3.     // can touch her field or method,
  4.     // for example: public class HisGirlNow extends MyGirl
  5.     protected int breast;
  6.     protected int looks;
  7.     protected int leg;
  8.     protected int body;
  9.     protected MyGirl(Builder builder) {
  10.         this.breast = builder.breast;
  11.         this.looks = builder.looks;
  12.         this.leg = builder.leg;
  13.         this.body = builder.body;
  14.     }
  15.     protected void doSomething() {
  16.         // TODO:evil
  17.     }
  18.     public static void main(String[] args) {
  19.         MyGirl myGirl = new MyGirl.Builder((new MyFeatures()).add("otaku").add(
  20.                 "programmer")).Breast(Breast.D_CUP).Looks(Looks.BEATIFUL)
  21.                 .Leg(Leg.THIN).Body(Body.AVERAGE).build();
  22.         myGirl.doSomething();
  23.     }
  24.     public static class Builder {
  25.         private int breast = Breast.A_CUP;
  26.         private int looks = Looks.UGLY;
  27.         private int leg = Leg.FAT;
  28.         private int body = Body.FAT;
  29.         private MyFeatures myFeatures;
  30.         public Builder(MyFeatures myFeatures) {
  31.             this.myFeatures = myFeatures;
  32.         }
  33.         public MyGirl build() {
  34.             if (this.myFeatures.contains("otaku")
  35.                     || this.myFeatures.contains("programmer")) {
  36.                 if (this.breast > Breast.A_CUP || this.looks > Looks.AVERAGE
  37.                         || this.leg < Leg.FAT || this.body < Body.FAT) {
  38.                     throw new Error("This not science!");
  39.                 }
  40.             }
  41.             return new MyGirl(this);
  42.         }
  43.         public Builder Breast(int breast) {
  44.             this.breast = breast;
  45.             return this;
  46.         }
  47.         public Builder Looks(int looks) {
  48.             this.looks = looks;
  49.             return this;
  50.         }
  51.         public Builder Leg(int leg) {
  52.             this.leg = leg;
  53.             return this;
  54.         }
  55.         public Builder Body(int body) {
  56.             this.body = body;
  57.             return this;
  58.         }
  59.     }
  60. }
复制代码
回复

使用道具 举报

发表于 2013-2-27 13:31 | 显示全部楼层
我竟然按着Ctrl点了doSomething();一下
回复

使用道具 举报

发表于 2013-2-27 13:58 | 显示全部楼层
引用第14楼allenz于2013-02-27 12:54发表的  :
[code]
public class MyGirl {

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

大大 我运行报错怎么办!


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 | 显示全部楼层
可以越狱吗?
回复

使用道具 举报

     
发表于 2013-2-27 15:51 | 显示全部楼层
当年做SE的时候更像在跑营业,先到客户那边卖中间件,各种吹牛。
回复

使用道具 举报

     
发表于 2013-2-27 16:07 | 显示全部楼层
http://baike.baidu.com/view/4276833.htm

我还以为是说这个……
回复

使用道具 举报

     
发表于 2013-2-27 16:09 | 显示全部楼层
乔布斯什么时候是码农了?
回复

使用道具 举报

     
发表于 2013-2-27 16:33 | 显示全部楼层
引用第14楼allenz于2013-02-27 12:54发表的  :
[code]
public class MyGirl {

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

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













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

使用道具 举报

发表于 2013-2-27 16:48 | 显示全部楼层
关注中,乔布斯教主不死!
回复

使用道具 举报

     
发表于 2013-2-27 16:52 | 显示全部楼层
原来早上在微博看到的图出自这里啊。好评!
回复

使用道具 举报

头像被屏蔽
     
发表于 2013-2-27 18:13 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

发表于 2013-2-27 18:35 | 显示全部楼层
TENGA赶紧出电动版吧,叫iCup好了,最好开放接口
回复

使用道具 举报

     
发表于 2013-2-27 19:20 | 显示全部楼层
引用第10楼dodolee于2013-02-27 09:54发表的  :
男主电车上手里拿的似乎是四人组的《设计模式》……

不合逻辑啊不合逻辑
女主既然是做人工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

我还以为是说这个……
我就知道会有人提这个
回复

使用道具 举报

头像被屏蔽
 楼主| 发表于 2013-3-5 23:33 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

     
发表于 2013-3-6 00:28 | 显示全部楼层
-- “你可以new一个女碰友”
-- “那一定要记得用unique_ptr”
回复

使用道具 举报

     
发表于 2013-3-6 09:24 | 显示全部楼层
又到了需要new一个女朋友的时候了呢
回复

使用道具 举报

发表于 2013-3-6 11:16 | 显示全部楼层
O道界的乔布斯

能越狱吗
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|上海互联网违法和不良信息举报中心|网上有害信息举报专区|962110 反电信诈骗|举报电话 021-62035905|Stage1st ( 沪ICP备13020230号-1|沪公网安备 31010702007642号 )

GMT+8, 2025-8-30 17:21 , Processed in 0.247275 second(s), 7 queries , Gzip On, Redis On.

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回复 返回顶部 返回列表