假设一个类有一个公共int计数器字段,可以被多个线程访问。这个int值只能自增或自减。要增加这个字段,应该使用哪种方法,为什么?锁(this.locker) this.counter + +;联锁。增