
编程
文章平均质量分 71
单车假日
只谈技术
展开
-
common and different of final in java and const in C++
common and different of final in java and const in C++原创 2013-01-14 21:40:15 · 426 阅读 · 0 评论 -
hibernate 保护链接的选项
Struts has detected an unhandled exception:Messages:Broken pipeThe last packet successfully received from the server was 181,031,777 milliseconds ago. The last packet sent successf原创 2015-02-08 11:38:58 · 528 阅读 · 0 评论 -
C语言大数
// 输入 char a[MAX_LEN] 和 char b[MAX_LEB], 相加得出char pcRet[MAX_LEN +1 ] void Add(char * pcA, char *pcB, char *pcRet){ int i = 0; for (i = 0; i { c[i] = a[i] +原创 2014-03-18 22:41:06 · 684 阅读 · 0 评论 -
Android Email的Activity
第一部分 Activity继承关系第二部分 各Activity功能Welcome 启动EmailServiceProxy服务器。 如果帐号不存在,创建AccountSetupBasics Activity。 创建EmailActivity。 AccountSetupBasics 配置帐号信息的两个界面:自动配置和手动配置。 onClick实现原创 2013-02-18 22:28:03 · 1167 阅读 · 0 评论 -
Object C 类的定义和实现
Object C中类的定义语法@interface MyClass : NSObject // 继承父类。{ @property char* m_strName; // define a property @property int m_iPlayerCount; // define a property}+ (MyCla原创 2013-02-24 17:00:31 · 759 阅读 · 0 评论 -
Android系统架构
第一部分 Android架构 android 的架构分为:Kernel、Core Lib、FrameWork、Applications。 Kernel提供了内核内存管理、进程管理、网络协议栈、安全性和各种驱动,例如声音驱动、显示驱动、Flash驱动、Binder驱动、蓝牙驱动、USB驱动、摄像头驱动、WiFi驱动。 Core Lib提供了Java运行所需要的可各种库和原创 2013-02-15 20:45:31 · 350 阅读 · 0 评论 -
[java] difference between Abstract Classes of Interface
difference between Abstract Classes of Interface原创 2013-01-20 11:13:03 · 339 阅读 · 0 评论 -
使用git下载kernel代码
windows1.安装git软件,下载目录http://code.google.com/p/msysgit/downloads/list2. 右键点击git bash,输入 git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git原创 2013-01-20 21:32:44 · 1891 阅读 · 0 评论 -
PowerShell基础知识
第一部分 基本概念基本笔记 微软在cmd的基础上对windows系统的维护手段进行了扩充,提供了更完善的shell。Windows 7之后系统自带powershell,在运行中输入powershell即可调用交互界面。可以通过脚本的方式组织PowerShell命令脚本后缀是.ps1. 在powershell界面调用powershell脚本的方式是 PowerSh原创 2013-01-27 15:41:48 · 3625 阅读 · 0 评论 -
intern method of String class of java
intern method of String class of java原创 2013-01-14 21:48:33 · 411 阅读 · 0 评论 -
python 常用命令
python -c 'import django;print(django.get_version())'django安装pythonpython get-pp.pypip install djangopip install MySQL-python sudo apt-get install python-devsudo apt-get inst原创 2017-02-05 21:31:48 · 722 阅读 · 0 评论