上周和hr约的今天面,中午加的hr的微信 一面 上来就敲代码,前后三道,白板 1. 层次遍历二叉树 2. 实现一个线程安全的单例模式,要求是lazy模式,即首次调用再创建对象 public class Single{ private static int flag = 0; private static Single single; public static Single get(){ synchronized(this){ if(flag==0){ single = Single(); flag = 1; } ...