2020年4月12日 星期日

C 語言 - #define

# define - 文本替換

    #define Max 10

# define - 定義函式

    #define MAX(a,b) ((a) > (b) ? (a) : (b))

    #define MINUS(a,b) a - b   // 注意這個 a-b 沒加括號很容易出錯
    #define MINUS(a,b) (a - b) // Good.

# define - 多行定義

    #define MACRO(arg1, arg2) \
    do                    \
    {                     \
        test1;            \
        test2;            \
    } while (0)


參考資料 :
https://pxnet2768.pixnet.net/blog/post/143425336

Related Posts:

  • 重新踏入網頁開發 (2) - ES6 模組化     Ryan Dahl 創造的 node.js 專案之所以如此重要, 是因為其理念為 模組(module), 讓 javascript 的大規模專案得以實現, 也讓 javascript 可以做伺服器端程式設計。 node.js 的模組     這裡示範 node.js 原生的模組, moduleA.js // 想像這裡有隱藏程式碼 // # var modul… Read More
  • LINUX - cURL 筆記 cURL - Client URL     cURL is a command-line tool for getting or sending data including files using URL syntax。網站在開發 Restful API 時,測試會用到的最基本工具。這邊紀錄一些常用的參數 基本的 request # Default 是 GET curl http://loca… Read More
  • Node.js - 支援 ES6 module Nodejs 支援 ES6 module     要讓 nodejs 去支援 ES6 module,必須去改寫 package.json。     開啟一個新的 nodejs project 首先是 node package manager npm init # 應該會有一堆要填的,若沒任何想法可以改下 npm init -y 自動幫你填完 這時候多一個 package.… Read More
  • 重新踏入網頁開發 (4) - Dependency injection 耦合性 (Coupling,dependency)     耦合性是指一程式中,模組及模組之間資訊或參數依賴的程度。低耦合性是結構良好程式的特性,低耦合性程式的可讀性及可維護性會比較好。舉例來說 Module A 使用了 Module B 功能, 今天 Module B 更改了功能而造成 Module A 必須也更改使用其功能的邏輯, 則會說 Module A 對 Module B 依賴程度高, 具有高耦合性。所以你要維護 … Read More
  • 重新踏入網頁開發 (3) - Route Route ( URL )     通過不同的 URL 去區別不同請求 Server.js import http from 'http' import url from 'url' function onRequest(request, response) { // 會紀錄 request url var path_na… Read More

0 意見:

張貼留言

Popular Posts