码农、黑客和2B程序员之间的区别_最新动态_新闻资讯_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 新闻资讯 > 最新动态 > 码农、黑客和2B程序员之间的区别

码农、黑客和2B程序员之间的区别

 2015/1/21 15:50:27    程序员俱乐部  我要评论(0)
  • 摘要:笔记本电脑码农:黑客:2B程序员:求2的32次方:码农:System.out.println(Math.pow(2,32));黑客:System.out.println(1L<<32);2B程序员:System.out.println(2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2);交换两个数:码农:voidswap(int&a,int&b){inttemp;temp=a;a=b
  • 标签:程序 程序员 区别 黑客

  笔记本电脑

  码农:

original="http://www.webhek.com/techug-res/uploads/2015/01/002R63055-0.jpg" />

  黑客

  2B 程序员

  求 2 的 32 次方:

  码农:

System.out.println (Math.pow (2, 32));

  黑客:

System.out.println (1L<<32);

  2B 程序员:

System.out.println (2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2*2);

  交换两个数:

  码农:

void swap (int &a,int &b)
{
    int temp;
    temp=a;
    a=b;
    b=temp;
}

  黑客:

void swap (int &a,int &b)
{
    a=a^b;
    b=a^b;
    a=a^b;
}

  2B 程序员:

void swap (int a,int b)
{
    int temp;
    temp=a;
    a=b;
    b=temp;
}

  类属性定义:

  码农:

public static int TYPE = 1;

  黑客:

/**
* 此策略下消息类型为全局类型,用以通知所有符合 B05 协议要求的处理者
* …… ……
*/ public static int TYPE = MsgTypes.TYPE_GLOBAL;

  2B 程序员:

public static String TYPE_ONE = "1";
public String TYPE = TYPE_ONE;

  手机开发平台:

  码农:WinCE/BlackBerry/Symbian/Android

  黑客:iPhone

  2B 程序员:MTK

  桌面应用界面开发:

  码农:Swing/MFC/C#

  黑客:WPF

  2B 程序员:VB (哈哈,不要怪我,我也做过 VB 项目,我没有偏见,不过关于 VB 的非议实在是太多太多了,连 Dijkstra 都说,“It is practically impossible to teach good programming to students that have had a prior exposure to BASIC: as potential programmers they are mentally mutilated beyond hope of regeneration.”)

  即时通讯软件:

  码农:工作:MSN,生活:Skype

  黑客: 工作:GTalk、生活:保密

  2B 程序员: 工作:腾讯 QQ,生活:QQ

  问题查询:

  码农: Google 搜索

  黑客: Google Scholar/Scirus

  2B 程序员: 百度知道

  Window 死机的解决方案:

  码农: 根据异常信息搜索问题原因和解决方法

  黑客: 哥从懂事起就不用 Windows 的!

  2B 程序员: 重装系统(万能解决方案),安装 360

  个人 Blog:

  码农: CSDN/CNBlogs/BlogBus

  黑客: 个人站(俺不是自夸啊,哈哈)

  2B 程序员: QQ 空间

  面试地点:

  码农: 会议室/教室

  黑客: 咖啡厅

  2B 程序员: 食堂

  Java 面试题目:

  码农: 请分别说一说封装、继承和多态的含义?

  黑客: 如果要设计一个系统,用来统计世界上所有道路的总数,你会怎样设计?

  2B 程序员: 请说说 Spring2.5.6 版本和 2.5.5 版本的区别?

  仅此一笑,你还有什么更有意思的程序员版本?

发表评论
用户名: 匿名