91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++中為什么不要定義C風格的可變參數函數

發布時間:2021-11-26 14:21:19 來源:億速云 閱讀:184 作者:iii 欄目:大數據

本篇內容主要講解“C++中為什么不要定義C風格的可變參數函數”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C++中為什么不要定義C風格的可變參數函數”吧!

ES.34:不要定義C風格的可變參數函數

Reason(原因)

Not type safe. Requires messy cast-and-macro-laden code to get working right.

這種方式不是類型安全的。需要繁雜的類型轉換和宏裝載代碼來保證正確動作。

Example(示例)

#include <cstdarg>

// "severity" followed by a zero-terminated list of char*s; write the C-style strings to cerr
void error(int severity ...)
{
   va_list ap;             // a magic type for holding arguments
   va_start(ap, severity); // arg startup: "severity" is the first argument of error()

   for (;;) {
       // treat the next var as a char*; no checking: a cast in disguise
       char* p = va_arg(ap, char*);
       if (!p) break;
       cerr << p << ' ';
   }

   va_end(ap);             // arg cleanup (don't forget this)

   cerr << '\n';
   if (severity) exit(severity);
}

void use()
{
   error(7, "this", "is", "an", "error", nullptr);
   error(7); // crash
   error(7, "this", "is", "an", "error");  // crash
   const char* is = "is";
   string an = "an";
   error(7, "this", "is", an, "error"); // crash
}

Alternative: Overloading. Templates. Variadic templates.

可選項:重載,模板,可變參數模板。

#include <iostream>

void error(int severity)
{
   std::cerr << '\n';
   std::exit(severity);
}

template <typename T, typename... Ts>
constexpr void error(int severity, T head, Ts... tail)
{
   std::cerr << head;
   error(severity, tail...);
}

void use()
{
   error(7); // No crash!
   error(5, "this", "is", "not", "an", "error"); // No crash!

   std::string an = "an";
   error(7, "this", "is", "not", an, "error"); // No crash!

   error(5, "oh", "no", nullptr); // Compile error! No need for nullptr.
}
Note(注意)

This is basically the way printf is implemented.

這是實現printf的基本方法。

Enforcement(實施建議)

  • Flag definitions of C-style variadic functions.

  • 標記定義了C風格可變參數函數的情況。

  • Flag #include <cstdarg> and #include <stdarg.h>

  • 標記代碼中包含#include <cstdarg> 和 #include <stdarg.h>的情況。

到此,相信大家對“C++中為什么不要定義C風格的可變參數函數”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

秦安县| 辽宁省| 绩溪县| 明溪县| 南城县| 普定县| 哈尔滨市| 固阳县| 桦南县| 民丰县| 濮阳县| 通辽市| 凤台县| 喀喇| 陵川县| 武汉市| 永登县| 当阳市| 佛山市| 西青区| 巨鹿县| 霍林郭勒市| 安康市| 江城| 大厂| 伊宁市| 神农架林区| 华容县| 许昌县| 互助| 岳普湖县| 房产| 罗平县| 松溪县| 陵川县| 西安市| 平邑县| 延川县| 五寨县| 南昌县| 海丰县|