File anrFile = null; String status =
Environment.getExternalStorageState(); if
(status.equals(Environment.MEDIA_MOUNTED)) { ...
分类:
其他好文 时间:
2014-05-23 12:08:36
阅读次数:
417
Find continuous sequences between 1 to N whose sum
equals to S.
分类:
其他好文 时间:
2014-05-21 23:59:57
阅读次数:
394
http://qt-project.org/doc/qtcreator-3.0/creator-project-cmake.html方法1:使用qmake编辑工程文件xxxx.pro添加equals(QT_ARCH,"arm"){target.path=/tmp/$${TARGET}/binINSTALLS+=target}CONFIG(debug,debug|release){message(thisisdebugversion)}else{DEFINES+=QT_NO_DEBUG_..
分类:
系统相关 时间:
2014-05-20 18:15:36
阅读次数:
478
一、 安装JDK从ORACLE官网下载适用于LINUX系统下的JDK(官网地址:
http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html);切换系统登录账户为root,命令如下:
s...
分类:
系统相关 时间:
2014-05-19 18:10:55
阅读次数:
499
19.String类:
1>String类的构造方法:
· 利用字符串构造一个字符串对象:
String str = “HelloWorld”;
2>字符串对象操作:
· charAt() :返回的是index+1位置的字符。
· equals和equalsIgnoreCase方法:...
分类:
编程语言 时间:
2014-05-18 15:30:44
阅读次数:
372
基于很多原因,还是得说说java环境的搭建和配置。
1、下载JDK:
jdk和jre的区别:jre表示运行环境,jdk除了运行环境,还带有调试开发环境。
地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html 这边主要讲解jdk7的安装。
此外http://www.orac...
分类:
编程语言 时间:
2014-05-18 07:11:46
阅读次数:
303
1、
??
Path Sum
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.
For example:
Given the below...
分类:
其他好文 时间:
2014-05-18 03:25:06
阅读次数:
301
转自http://blog.csdn.net/yuan892173701/article/details/6916697一、JDK1.7安装1、下载jdk,下载地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk-7u1-dow...
System.Data.Entity.DbFunctions.DiffDays(cs.StartTime.Value,DateTime.Now)
== 0//只获取当天ORXX.StartTime.Value.Date.Equals(DateTime.Now.Date)//只获取当天
分类:
其他好文 时间:
2014-05-17 21:46:34
阅读次数:
2805
面向对象 封装的原则
要求使对象之外的部分不能随意存取对象的内部数据,从而有效避免了错误对它的“交叉感染”,使软件错误能局部化,降低排错难度继承
所有的类都继承自java.lang.Object,一些常用的方法: equals():比较两个对象引用时否相同。 getClass()...
分类:
其他好文 时间:
2014-05-17 20:11:51
阅读次数:
413