懒汉与饿汉
Posted weixin_43063239
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了懒汉与饿汉相关的知识,希望对你有一定的参考价值。
public class Single
Node nh = new Node();
Node nl ;
public Node getNode()
return nl == null ? nl = new Node() : nl;
public static void main(String[] args)
Single sl = new Single();
System.out.println(sl.nh);
System.out.println(sl.nh);
System.out.println(sl.getNode());
System.out.println(sl.getNode());
class Node
private static long count = 0;
private final long id = count++;
public String toString()
return String.valueOf(id);
```
以上是关于懒汉与饿汉的主要内容,如果未能解决你的问题,请参考以下文章