java 中有多少空接口_java中RandomAccess接口明明是个空接口,有什么用呢?

RandomAccess接口

一、官方描述

首先我们先看一下这个接口在java中是怎么描述的。

位置:rt.jar中java.util.RandomAccess

/**

* Marker interface used by List implementations to indicate that

* they support fast (generally constant time) random access. The primary

* purpose of this interface is to allow generic algorithms to alter their

* behavior to provide good performance when applied to either random or

* sequential access lists.

*

*

The best algorithms for manipulating random access lists (such as

* ArrayList) can produce quadratic behavior when applied to

* sequential access lists (such as LinkedList). Generic list

* algorithms are encouraged to check whether the given list is an

* instanceof this interface before applying an algorithm that would

* provide poor performance if it were applied to a sequential access list,

* and to alter their behavior if necessary to guarantee acceptable

* performance.

*

*

It is recognized that the distinction between random and sequential

* access is often fuzzy. For example, some List implementations

* provide asymptotically linear access times if they get huge, but constant

* access times in practice. Such a List implementation

* should generally implement this interface. As a rule of thumb, a

* List implementation should implement this interface if,

* for typical instances of the class, this loop:

*

 
 

* for (int i=0, n=list.size(); i < n; i++)

* list.get(i);

*

* runs faster than this loop:

*

 
 

* for (Iterator i=list.iterator(); i.hasNext(); )

* i.next();

*

大致的意思是说:这是一个用于List的实现类的中使用的标记接口,能够支持快速随机访问(一定时间内)。此接口的主要目的是允许通用算法在应用于随机或顺序访问列表时改变其行为以提供良好的性能。

只在List的实现类ArrayList可以for + get(index)使用该算法执行,在LinkedList类中不行。

二、查看ArrayList和LinkedList

位置:rt.jar中java.util.ArrayList和java.util.LinkedList

2.1 ArrayList

public class ArrayList extends AbstractList

implements List, RandomAccess, Cloneable, java.io.Serializable

{

private static final long serialVersionUID = 8683452581122892189L;

...

}

2.2 LinkedList

public class LinkedList

extends AbstractSequentialList

implements List, Deque, Cloneable, java.io.Serializable

{

transient int size = 0;

...

}

由源码可以看出:ArrayList是一个实现了List、RandomAccess、Cloneable、 java.io.Serializable等接口的类。实现可以随机访问、克隆及序列化的数组集合。

LinkedList则是实现了List、Deque、Cloneable、java.io.Serializable等接口的类,所以它是一个克隆、序列化的双端连表。

三、验证RandomAccess实践,当然选择ArrayList。

代码如下:

public class Application {

public static void main(String[] args) {

System.out.println("开始准备数据");

List data = new ArrayList();

int length = 50000000;

while (length > 0){

data.add(length);

length--;

}

System.out.println("准备数据完成");

System.out.println("开始使用get(index)");

Long timeIndex = System.currentTimeMillis();

for (int i = 0; i < data.size(); i++){

data.get(i);

}

System.out.println("结束使用get(index) :" + String.valueOf(System.currentTimeMillis() - timeIndex));

System.out.println("开始使用Iterable");

Long timeIterable = System.currentTimeMillis();

Iterator iterator = data.iterator();

while (iterator.hasNext()){

iterator.next();

}

System.out.println("结束使用Iterable :" + String.valueOf(System.currentTimeMillis() - timeIterable));

}

}

运行结果:

开始准备数据

准备数据完成

开始使用get(index)

结束使用get(index) :4

开始使用Iterable

结束使用Iterable :8

四、总结

可以看出当集合的数量达到一定值的时候,效果很明显,但是当length小的时候结果不是很明显。实际使用中看自己的场景使用即可。本身对于程序性能影响并不大。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
下面是一个简单的示例代码,用于调用一个API,其AccessKey、sign、timestamp和nonce作为查询参数,hsPartyId作为标头,JSON作为请求正文: ``` import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import java.util.HashMap; import java.util.Map; import java.util.Random; import javax.crypto.Mac; import javax.crypto.spec.SecretKeySpec; import org.apache.commons.codec.binary.Base64; public class ApiCaller { private static final String API_URL = "https://example.com/api"; private static final String ACCESS_KEY = "my_access_key"; private static final String SECRET_KEY = "my_secret_key"; private static final String HS_PARTY_ID = "my_hs_party_id"; public static void main(String[] args) throws Exception { String timestamp = String.valueOf(System.currentTimeMillis() / 1000); String nonce = generateNonce(); // 构造查询参数 Map<String, String> queryParams = new HashMap<>(); queryParams.put("AccessKey", ACCESS_KEY); queryParams.put("sign", generateSign(SECRET_KEY, timestamp, nonce)); queryParams.put("timestamp", timestamp); queryParams.put("nonce", nonce); // 构造标头 Map<String, String> headers = new HashMap<>(); headers.put("hsPartyId", HS_PARTY_ID); // 构造请求正文 String requestBody = "{\"key\":\"value\"}"; // 发送请求 String response = sendGetRequest(API_URL, queryParams, headers, requestBody); // 处理响应 System.out.println(response); } private static String sendGetRequest(String url, Map<String, String> queryParams, Map<String, String> headers, String requestBody) throws Exception { StringBuilder sb = new StringBuilder(url); if (!queryParams.isEmpty()) { sb.append('?'); for (Map.Entry<String, String> entry : queryParams.entrySet()) { sb.append(entry.getKey()).append('=').append(entry.getValue()).append('&'); } sb.deleteCharAt(sb.length() - 1); } HttpURLConnection conn = (HttpURLConnection) new URL(sb.toString()).openConnection(); conn.setRequestMethod("GET"); for (Map.Entry<String, String> entry : headers.entrySet()) { conn.setRequestProperty(entry.getKey(), entry.getValue()); } if (requestBody != null && !requestBody.isEmpty()) { conn.setDoOutput(true); conn.getOutputStream().write(requestBody.getBytes()); } BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream())); StringBuilder response = new StringBuilder(); String line; while ((line = reader.readLine()) != null) { response.append(line); } reader.close(); conn.disconnect(); return response.toString(); } private static String generateSign(String secretKey, String timestamp, String nonce) throws Exception { String message = timestamp + nonce; SecretKeySpec keySpec = new SecretKeySpec(secretKey.getBytes("UTF-8"), "HmacSHA256"); Mac mac = Mac.getInstance("HmacSHA256"); mac.init(keySpec); byte[] rawHmac = mac.doFinal(message.getBytes("UTF-8")); return Base64.encodeBase64String(rawHmac); } private static String generateNonce() { return String.valueOf(new Random().nextInt(1000000)); } } ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值