• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • YouClaw
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






Quentin Yo

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

04 2014 档案

 
Ubuntu 12.04.4 LTS下linphone-android编译记录
摘要:操作系统:Ubuntu 12.04.4 LTS 32位linphone-android版本:android:versionCode="2211"准备工作:1、首先安装git用于获取linphone-android源码ykx@ykx:~$ sudo apt-get install git获取linph... 阅读全文
posted @ 2014-04-17 16:41 QuentinYo 阅读(2072) 评论(1) 推荐(0)
Java基础:异常的限制
摘要:1 package cn.tju.thinkinginjava.exception; 2 3 @SuppressWarnings("serial") 4 class BaseballException extends Exception {} 5 @SuppressWarnings("serial") 6 class Foul extends BaseballException {} 7 @SuppressWarnings("serial") 8 class Strike extends BaseballException {} 9 阅读全文
posted @ 2014-04-11 20:50 QuentinYo 阅读(413) 评论(0) 推荐(0)
Java基础:小知识点
摘要:1.1 Integer i = 1;2 Integer a = Integer.valueOf(1);3 Utils.Sop(a==i);4 5 //true 阅读全文
posted @ 2014-04-09 14:33 QuentinYo 阅读(146) 评论(0) 推荐(0)