37.package mythread;
38.
39.public class JoinThread extends Thread
40.{
41. public static int n = 0;
42.
43. public static synchronized void inc()
44. {
45. n++;
46. }
47. public void run()
48. {
49. for (int i = 0; i < 10; i++)
50. try
51. {
52. inc(); // n = n + 1 改成了 inc();
53. sleep(3); // 為了使運行結(jié)果更隨機,延遲3毫秒
54.
55. }
56. catch (Exception e)
57. {
58. }
59. }
60.
61. public static void main(String[] args) throws Exception
62. {
63.
64. Thread threads[] = new Thread[100];
65. for (int i = 0; i < threads.length; i++)
66. // 建立100個線程
67. threads[i] = new JoinThread();
68. for (int i = 0; i < threads.length; i++)
69. // 運行剛才建立的100個線程
70. threads[i].start();
71. for (int i = 0; i < threads.length; i++)
72. // 100個線程都執(zhí)行完后繼續(xù)
73. threads[i].join();
74. System.out.println("n=" + JoinThread.n);
75. }
76.}
上面的代碼將n=n+1改成了inc(),其中inc方法使用了synchronized關(guān)鍵字進行方法同步。因此,在使用volatile關(guān)鍵字時要慎重,并不是只要簡單類型變量使用volatile修飾,對這個變量的所有操作都是原來操作,當變量的值由自身的上一個決定時,如n=n+1、n++等,volatile關(guān)鍵字將失效,只有當變量的值和自身上一個值無關(guān)時對該變量的操作才是原子級別的,如n = m + 1,這個就是原級別的。所以在使用volatile關(guān)鍵時一定要謹慎,如果自己沒有把握,可以使用synchronized來代替volatile。
相關(guān)推薦:
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |