git
github
以下示範branch名稱為jin
Learn More →
還不會的可以參考我的另一篇文章: 學會使用Git與GitHub
建立branch
git branch jin
switch to branch
git checkout jin
Learn More →
Learn More →
補充: 相當於建立branch + checkout到branch的指令
git checkout -b jin
補充:
cd的意思是change direction(切換路徑),可以用切換到你想去的資料夾,寫法是用相對路徑
設定Java的Content Assist 1. Steps步驟: Eclipse ➡️ windows ➡️ Preferences ➡️ Java ➡️ Editor ➡️ Content Assist ➡️ Auto activation triggers for Java 2. Enter in "Auto activation triggers for Java": 輸入以下這串文字到「Auto activation triggers for Java」這個欄位 ==_.ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz== 3. Tick the checkbox "Disable insertion triggers except 'Enter' " So,when you want to choose the suggestion of Eclipse, you will use "Enter".
Aug 7, 2022為什麼要用 .gitignore? 在把資料同步到github時,有時候會同步到一些不必要的檔案。 例如:環境設定( Eclipse的.metadata檔 )、編譯檔( java的.class檔 )...等等 所以,我們可以利用.gitignore檔讓gitHub忽略這些檔案 Step1 進入這個網站 gitignore.io https://www.toptal.com/developers/gitignore/ 然後輸入你有用到的工具、語言
Jul 11, 2022step 1 打開GitHub https://github.com/ 先註冊GitHub帳號 然後我們要建立一個Repository(大概可以翻譯成'儲存庫'的意思),如下圖 點進New之後會看到 Repository Name是指你的儲存庫的名稱
Jul 11, 2022抽象方法:只要沒有實作,就是抽象方法。 eg. public abstract domethod( ); :::info 示意圖: ::: :::warning 💡 方法只有( )卻沒有後面實作的{ },這樣就是抽象方法!
Jun 14, 2022or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up