原创 小新Pro13重裝系統遇到的一些問題

小新Pro13重裝系統遇到的一些問題遇到的一些問題及其解決途徑使用U盤安裝安裝最新的顯卡驅動重裝系統後,快捷鍵Fn+Q沒有反應BitLocker 遇到的一些問題及其解決途徑 筆記本型號是小新Pro13 I7版本。 在使用筆記本自帶

原创 使用jsvc啓動java進程

使用jsvc啓動java進程使用jsvc啓動java進程一、啓動、關閉java進程時遇到的一些需求1. 在查看java進程信息時,希望能隱藏部分classpath。2. 有時希望能以*類似同步阻塞調用*的方式來啓動和關閉java進

原创 XMeters使用介紹

XMeters使用介紹XMeters簡要使用介紹簡單介紹官方網站一些截圖用法說明整體界面任務欄設置鼠標快捷鍵選項設置關於購買 XMeters簡要使用介紹 簡單描述一下XMeters是什麼,它的作用,以及如何使用。 簡單介紹 一個掛

原创 戰鬥屬性設計

目錄戰鬥屬性設計修改時間前言屬性存取屬性管理一些思路細節 戰鬥屬性設計 修改時間 文章可能會隨時修改,慢慢完善。 2018-12-14 14:20 前言 遊戲中的角色屬性是一個很寬泛的概念,在不同的上下文中有不同的意思。 有人喜歡將角

原创 字典設計

字典設計 修改時間 文章可能會隨時修改,慢慢完善。 2018-11-25 15:00 前言 遊戲服務器在啓動時,需要加載某些靜態數據到內存之中,比如所有商品的配置數據(可能包含id、名稱、價格等屬性)。 這些靜態數據在被加載後,會在內

原创 Unchecked Exceptions — The Controversy

Unchecked Exceptions — The Controversy Because the Java programming language does not require methods to catch or to

原创 The Java™ Tutorials - Exceptions

*特殊說明 1. 翻譯自oracle的The Java™ Tutorials - Exceptions系列** 2. 翻譯水平有限,只是用作自己學習和回顧而已。 3. 歡迎提出各種意見。 Exceptions What Is

原创 Creating Exception Classes

Creating Exception Classes When faced with choosing the type of exception to throw, you can either use one written by

原创 Advantages of Exceptions

Advantages of Exceptions Now that you know what exceptions are and how to use them, it’s time to learn the advantages

原创 Chained Exceptions

Chained Exceptions An application often responds to an exception by throwing another exception. In effect, the first

原创 How to Throw Exceptions

How to Throw Exceptions Before you can catch an exception, some code somewhere must throw one. Any code can throw an

原创 Summary

Summary A program can use exceptions to indicate that an error occurred. To throw an exception, use the throw stateme

原创 Catching and Handling Exceptions

Catching and Handling Exceptions This section describes how to use the three exception handler components — the try,

原创 Lesson: Exceptions

Lesson: Exceptions The Java programming language uses exceptions to handle errors and other exceptional events. This

原创 The Catch or Specify Requirement

The Catch or Specify Requirement Valid Java programming language code must honor the Catch or Specify Requirement. Th