1 package java.lang; 2 3 /** 4 * A mutable sequence of characters. This class provides an API compatible with 5 * StringBuffer, but with no guarantee ... ...
分类:
编程语言 时间:
2017-05-15 19:54:30
阅读次数:
253
线性表,链表,哈希表是常用的数据结构,在进行Java开发时,JDK已经为我们提供了一系列相应的类来实现基本的数据结构。这些类均在java.util包中。本文试图通过简单的描述,向读者阐述各个类的作用以及如何正确使用这些类。 Collection├List│├LinkedList│├ArrayList ...
分类:
其他好文 时间:
2017-05-15 10:00:06
阅读次数:
203
原文: Xcode及模拟器SDK下载 如果你嫌在 App Store 下载 Xcode 太慢,你也可以选择从网络上下载: Xcode下载(Beta版打的包是不能提交到App Store上的) 绝对官方源!!!绝对官方源!!!绝对官方源!!! 不能确定自己的 Xcode 是否有问题?简单的一条命令就能 ...
分类:
移动开发 时间:
2017-05-10 17:58:21
阅读次数:
449
转: 大家都知道JDK提供了Collections.UnmodifiableList(),Collections.UnmodifiableSet()和Collections.unmodifiableMap()这些包装方法。事实上它们的实现都是包装了原来的集合对象,然后在add,put,remove这 ...
分类:
其他好文 时间:
2017-05-03 11:43:32
阅读次数:
155
Given an array of integers and an integer k, you need to find the total number of continuous subarrays whose sum equals to k.Example 1:Input:nums = [1 ...
分类:
其他好文 时间:
2017-04-30 14:03:25
阅读次数:
221
import junit.framework.TestCase import scala.collection.mutable.ArrayBuffer; //数组(1) //知识点-定义数组,变长数组 class Demo1 extends TestCase{ //定义数组 def test_^^(... ...
分类:
编程语言 时间:
2017-04-28 20:30:55
阅读次数:
206
// // RemoteNotification.m // RemoteNotificationController // // Created by xiaoyao on 15/3/18. // Copyright (c) 2015年 lijien. All rights reserved. // ...
分类:
其他好文 时间:
2017-04-23 15:50:49
阅读次数:
151
在python中。面向对象编程主要有两个主题,就是类和类实例。 1、类 新式类—— class ClassName(bases): 'ClassName class doc string' class_suite 经典类—— class ClassName: 'ClassName class doc ...
分类:
编程语言 时间:
2017-04-19 09:32:10
阅读次数:
213
拍照、本地图片工具类:解决了4.4以上剪裁会提示“找不到文件”和6.0动态授予权限,及7.0报FileUriExposedException异常问题。 ...
分类:
移动开发 时间:
2017-04-17 16:45:48
阅读次数:
1148