thread safe map for java

前端 未结 7 862
忘掉有多难
忘掉有多难 2020-12-09 14:44

i need a thread safe map, i have something like this: (i\'m very new to java)

 public static class Manager
        {
        static 
        {
//something wr         


        
7条回答
  •  感动是毒
    2020-12-09 15:11

    Your map "list" needs to be static if you want to access it in a static block.

提交回复
热议问题