置頂文章

精選分類

作業系統

單元測試

程式設計

文章列表

791 1 分鐘

# 何謂指標 指標(Pointer) : 用來表示變數所在的記憶體位址。 指標變數(Pointer Variable) : 用來存放指標的變數。 # 變數型態 我們宣告的 int a 是告訴編譯器,我的變數 a,是用來存放 int 型態的,也就是記憶體會有區塊存放著變數 a 的數值。 而當我們使用取址符號 &a 時,這個過程是用來取得變數 a 所在的記憶體位址。 在 C 語言中,任何的數值本身都是有型態的,例如: 10 就是一個整數型態。 &a 取得的就是整數型態的指標。 # 程式碼範例 # 常見使用 int a = 10; // a 的型態是...
1.1k 1 分鐘

# Intersection Observer API 實作 # Html 將圖片原本的 src 改為 data-src before <img src="test.jpg" /> after <img data-src="test.jpg" /> 添加 lazyload lazy-hidden 到圖片原本的 class before <img class="" /> after...
1.7k 2 分鐘

# 版本變動 # initialize before init_timer(struct timer_list *) after timer_setup(struct timer_list *, void (*callback)(struct timer_list *), unsigned int) # callback before callback(unsigned long) after callback(struct timer_list *) # timer_list before struct timer_list { ... void...
1.2k 1 分鐘

# VirtualBox 教學 # 作業系統下載 Ubuntu 18.04 http://ftp.ubuntu-tw.org/mirror/ubuntu-releases/ # 虛擬機器建立 虛擬機器 名稱:隨意 類型:Linux 版本:Ubuntu (64-bit) 記憶體大小 1024MB 以上 建立虛擬硬碟 類型:VDI (VirtualBox 磁碟映像) 存放方式:動態配置 大小:500MB # 虛擬機器設置 一般 -> 進階 共用剪貼簿:雙向 拖放:雙向 存放裝置 -> IDE (空) -> 光碟機 (IDE...
1.4k 1 分鐘

# Install # Windows 下載並安裝 Visual Studio 2022 https://visualstudio.microsoft.com/zh-hant/downloads/ 安裝下圖標線的套件 # Linux 更新 apt 資料庫 sudo apt update安裝以下套件 sudo apt install gcc g++ lcovsudo apt install libgtest-dev進行以下操作 cd /usr/src/gtestsudo cmake CMakeLists.txtsudo makesudo make install# Testing #...
2.1k 2 分鐘

# Install # Windows 下載並安裝 MinGW https://sourceforge.net/projects/mingw/ 安裝下圖出現的套件 添加環境變數如下 下載 CUnit-2.1-3 https://sourceforge.net/projects/cunit/ 複製 CUnit-2.1-3 到 (C:\MinGW\msys\1.0\home) ,並解壓縮 啟動 MSYS,預設路徑 (C:\MinGW\msys\1.0\msys.bat),並執行以下命令 cd...
6.5k 6 分鐘

# httpd # 預設路徑 說明 路徑 伺服器 設定檔目錄 /etc/httpd/ 伺服器 讀取檔目錄 /var/www/ 伺服器 預設網頁目錄 /var/www/html/ # 安裝套件 yum install httpd# 使用者網頁 開啟使用者網頁設定檔 vim /etc/httpd/conf.d/userdir.conf修改使用者網頁設定檔如下 <IfModule mod_userdir.c> # # UserDir is disabled by default since it can confirm the presence # of a...
3.9k 4 分鐘

# 查詢應用 指令範例 說明 特別說明 範例 man [instruction] 查詢指令相關說明 在裡面打 /[search] 可以搜尋 [search] man ifconfig which [instruction] 查詢指令所在的絕對路徑 which shutdown history 查詢紀錄 ifconfig 查詢網路 ip ip a 查詢所有網路設備相關訊息 time vim [file] 計時開啟檔案時間 time vim ex1.txt # 查詢目標 指令範例 說明 特別說明 範例 ps aux | grep [Keyword] 查詢程序關鍵字 ps...