Actuallt我想設置一個可變長度爲6位數的數字,遞增它並在記錄達到999999時將其重置。我想只在通過寫入的客戶端對Web服務執行特定調用時遞增該值Java的。你能提出任何建議嗎?任何其他方式,然後創建一個數據庫,並輸入值,然後刷新值,當計數達到999999. 謝謝遞增一個數字,然後在輸入固定記錄後重新設置?
0
A
回答
0
我會寫一個例子在單身,但我建議使用彈簧或容器相當於使用1單一的bean來做到這一點。
public class Counter {
private static Counter instance;
private static int COUNT_MAX_VALUE = 1000000;
public static synchronized Counter getInstance() {
if (instance == null) {
instance = new Counter();
}
return instance;
}
// -- end of static features --
private int counter;
public Counter() {
this.counter = 0;
}
// return result
public synchronized int getCount() {
return counter;
}
// increment by 1, then return result
public synchronized int addAndGetCount() {
addCount();
return getCount();
}
// increment by 1
public synchronized int addCount() {
if (++counter >= COUNT_MAX_VALUE) {
counter = 0;
}
}
}
相關問題
- 1. cxGrid在最後一個字段上的新記錄輸入
- 2. 輸入一組數字然後輸出一個特定的數字?在R
- 3. 記錄保存後重置輸入字段
- 4. 更新記錄,如果失敗,插入記錄,然後更新
- 5. 遞增然後遞減10
- 6. 我如何設置一個cookie,然後在PHP中重定向?
- 7. Laravel在登錄後重定向輸入
- 8. 算法來創建一個重複增加然後遞減的數字系列
- 9. 用一個數字重命名我的圖像,然後自動遞增它
- 10. 重定向錯誤輸出到記錄儀,然後提交
- 11. JQPlot設置刻度然後重新標記它們
- 12. 退出方法然後重新輸入(在同一點)? JAVA
- 13. 搜索一個字符串,然後輸入新線
- 14. aiohttp - 設置一個cookie,然後重定向用戶
- 15. 在另一個字段發生更改後重置的自動遞增字段
- 16. ASP.NET C# - 插入記錄後重定向
- 17. 在關聯數組中設置輸入,然後遍歷條目
- 18. 一次性記錄插入然後更新很多次
- 19. 要求用戶輸入一個字符,然後輸入一個字符串
- 20. 插入然後在SYBASE然後更新
- 21. 設置名字輸入後輸入一些文本通過jQuery
- 22. BindingSource,設置數據源,然後設置一個新的數據源
- 23. 數量增加,然後重置每個日期
- 24. 將小數點後的數字輸入限制爲兩個固定數字
- 25. 找到一個單數增加然後遞減的序列
- 26. 如何編碼「如果輸入!=一個數字,然後...」
- 27. 輸入一個數字然後倒轉它
- 28. 重構 - 查看是否存在記錄然後獲取記錄
- 29. 檢查重複記錄,然後創建
- 30. Java:String.Split在數字輸入後停止記錄
無法理解您的問題的難度。增加Web服務調用的值並在達到限制時重置它,似乎很簡單,可以通過基本的條件運算符來完成。 – Renjith 2014-09-29 08:58:17