【简答题】
在下列类中,为了实现对共享变量sharedInt的并发控制,应在下划线处填入的代码是______。 public class LockTest{ ______ int sharedInt = 0; synchronized void add(){ sharedInt ++; } synchronized int get(){ return sharedInt; } } A.public B.private C.default D.synchronized
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
收藏
举报
参考答案:
参考解析: