{"id":101802,"date":"2024-03-22T04:28:56","date_gmt":"2024-03-21T19:28:56","guid":{"rendered":"https:\/\/www.silicloud.com\/ja\/blog\/c%e3%81%ae%e3%82%b3%e3%83%bc%e3%83%ab%e3%83%90%e3%83%83%e3%82%af%e9%96%a2%e6%95%b0%e3%81%ab%e3%83%91%e3%83%a9%e3%83%a1%e3%83%bc%e3%82%bf%e3%83%bc%e3%82%92%e6%b8%a1%e3%81%99%e6%96%b9%e6%b3%95\/"},"modified":"2024-03-27T03:13:57","modified_gmt":"2024-03-26T18:13:57","slug":"c%e3%81%ae%e3%82%b3%e3%83%bc%e3%83%ab%e3%83%90%e3%83%83%e3%82%af%e9%96%a2%e6%95%b0%e3%81%ab%e3%83%91%e3%83%a9%e3%83%a1%e3%83%bc%e3%82%bf%e3%83%bc%e3%82%92%e6%b8%a1%e3%81%99%e6%96%b9%e6%b3%95","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/ja\/blog\/c%e3%81%ae%e3%82%b3%e3%83%bc%e3%83%ab%e3%83%90%e3%83%83%e3%82%af%e9%96%a2%e6%95%b0%e3%81%ab%e3%83%91%e3%83%a9%e3%83%a1%e3%83%bc%e3%82%bf%e3%83%bc%e3%82%92%e6%b8%a1%e3%81%99%e6%96%b9%e6%b3%95\/","title":{"rendered":"C++\u306e\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u65b9\u6cd5\u306f\uff1f"},"content":{"rendered":"<p>\u5728C++\u4e2d\uff0c\u56de\u8c03\u51fd\u6570\u53ef\u4ee5\u901a\u8fc7\u4ee5\u4e0b\u51e0\u79cd\u65b9\u5f0f\u6765\u4f20\u9012\u53c2\u6570\uff1a<\/p>\n<ol>\n<li>\u51fd\u6570\u6307\u9488\u4f20\u53c2\uff1a\u5b9a\u4e49\u4e00\u4e2a\u51fd\u6570\u6307\u9488\u7c7b\u578b\uff0c\u7136\u540e\u5c06\u56de\u8c03\u51fd\u6570\u7684\u5730\u5740\u4f20\u9012\u7ed9\u8be5\u6307\u9488\u53c2\u6570\u3002\u56de\u8c03\u51fd\u6570\u7684\u53c2\u6570\u53ef\u4ee5\u76f4\u63a5\u5728\u51fd\u6570\u6307\u9488\u7c7b\u578b\u4e2d\u8fdb\u884c\u5b9a\u4e49\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-function\"><span class=\"hljs-keyword\">typedef<\/span> <span class=\"hljs-title\">void<\/span> <span class=\"hljs-params\">(*CallbackFunc)<\/span><span class=\"hljs-params\">(<span class=\"hljs-type\">int<\/span>)<\/span><\/span>; <span class=\"hljs-comment\">\/\/ \u5b9a\u4e49\u51fd\u6570\u6307\u9488\u7c7b\u578b<\/span>\r\n\r\n<span class=\"hljs-function\"><span class=\"hljs-type\">void<\/span> <span class=\"hljs-title\">RegisterCallback<\/span><span class=\"hljs-params\">(CallbackFunc callback)<\/span> <\/span>{\r\n    <span class=\"hljs-built_in\">callback<\/span>(<span class=\"hljs-number\">10<\/span>); <span class=\"hljs-comment\">\/\/ \u8c03\u7528\u56de\u8c03\u51fd\u6570<\/span>\r\n}\r\n\r\n<span class=\"hljs-function\"><span class=\"hljs-type\">void<\/span> <span class=\"hljs-title\">MyCallback<\/span><span class=\"hljs-params\">(<span class=\"hljs-type\">int<\/span> value)<\/span> <\/span>{\r\n    <span class=\"hljs-comment\">\/\/ \u56de\u8c03\u51fd\u6570\u7684\u5b9e\u73b0<\/span>\r\n    std::cout &lt;&lt; <span class=\"hljs-string\">\"Callback value: \"<\/span> &lt;&lt; value &lt;&lt; std::endl;\r\n}\r\n\r\n<span class=\"hljs-function\"><span class=\"hljs-type\">int<\/span> <span class=\"hljs-title\">main<\/span><span class=\"hljs-params\">()<\/span> <\/span>{\r\n    <span class=\"hljs-built_in\">RegisterCallback<\/span>(MyCallback); <span class=\"hljs-comment\">\/\/ \u6ce8\u518c\u56de\u8c03\u51fd\u6570<\/span>\r\n    <span class=\"hljs-keyword\">return<\/span> <span class=\"hljs-number\">0<\/span>;\r\n}\r\n<\/code><\/pre>\n<ol>\n<li>\u95a2\u6570\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u6e21\u3059\uff1a\u62ec\u5f27\u6f14\u7b97\u5b50()\u3092\u6301\u3064\u30af\u30e9\u30b9\u3092\u5b9a\u7fa9\u3057\u3001\u305d\u306e\u30af\u30e9\u30b9\u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u5f15\u6570\u3068\u3057\u3066\u6e21\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">class<\/span> <span class=\"hljs-title class_\">Callback<\/span> {\r\n<span class=\"hljs-keyword\">public<\/span>:\r\n    <span class=\"hljs-function\"><span class=\"hljs-type\">void<\/span> <span class=\"hljs-title\">operator<\/span><span class=\"hljs-params\">()<\/span><span class=\"hljs-params\">(<span class=\"hljs-type\">int<\/span> value)<\/span> <\/span>{\r\n        <span class=\"hljs-comment\">\/\/ \u56de\u8c03\u51fd\u6570\u7684\u5b9e\u73b0<\/span>\r\n        std::cout &lt;&lt; <span class=\"hljs-string\">\"Callback value: \"<\/span> &lt;&lt; value &lt;&lt; std::endl;\r\n    }\r\n};\r\n\r\n<span class=\"hljs-function\"><span class=\"hljs-type\">void<\/span> <span class=\"hljs-title\">RegisterCallback<\/span><span class=\"hljs-params\">(Callback callback)<\/span> <\/span>{\r\n    <span class=\"hljs-built_in\">callback<\/span>(<span class=\"hljs-number\">10<\/span>); <span class=\"hljs-comment\">\/\/ \u8c03\u7528\u56de\u8c03\u51fd\u6570<\/span>\r\n}\r\n\r\n<span class=\"hljs-function\"><span class=\"hljs-type\">int<\/span> <span class=\"hljs-title\">main<\/span><span class=\"hljs-params\">()<\/span> <\/span>{\r\n    Callback myCallback; <span class=\"hljs-comment\">\/\/ \u521b\u5efa\u56de\u8c03\u51fd\u6570\u5bf9\u8c61<\/span>\r\n    <span class=\"hljs-built_in\">RegisterCallback<\/span>(myCallback); <span class=\"hljs-comment\">\/\/ \u6ce8\u518c\u56de\u8c03\u51fd\u6570<\/span>\r\n    <span class=\"hljs-keyword\">return<\/span> <span class=\"hljs-number\">0<\/span>;\r\n}\r\n<\/code><\/pre>\n<ol>\n<li>std::function\u306b\u3088\u308b\u5f15\u6570\u306e\u6e21\u3057\u65b9\uff1astd::function\u306fC++11\u3067\u5c0e\u5165\u3055\u308c\u305f\u95a2\u6570\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30e9\u30c3\u30d7\u30af\u30e9\u30b9\u3067\u3001\u95a2\u6570\u30dd\u30a4\u30f3\u30bf\u3001\u95a2\u6570\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306a\u3069\u3092\u30e9\u30c3\u30d7\u3057\u3066\u3001\u305d\u308c\u3089\u306b\u540c\u3058\u30b3\u30fc\u30eb\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u3092\u6301\u305f\u305b\u308b\u305f\u3081\u306b\u7528\u3044\u3089\u308c\u307e\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-meta\">#<span class=\"hljs-keyword\">include<\/span> <span class=\"hljs-string\">&lt;functional&gt;<\/span><\/span>\r\n\r\n<span class=\"hljs-function\"><span class=\"hljs-type\">void<\/span> <span class=\"hljs-title\">RegisterCallback<\/span><span class=\"hljs-params\">(std::function&lt;<span class=\"hljs-type\">void<\/span>(<span class=\"hljs-type\">int<\/span>)&gt; callback)<\/span> <\/span>{\r\n    <span class=\"hljs-built_in\">callback<\/span>(<span class=\"hljs-number\">10<\/span>); <span class=\"hljs-comment\">\/\/ \u8c03\u7528\u56de\u8c03\u51fd\u6570<\/span>\r\n}\r\n\r\n<span class=\"hljs-function\"><span class=\"hljs-type\">void<\/span> <span class=\"hljs-title\">MyCallback<\/span><span class=\"hljs-params\">(<span class=\"hljs-type\">int<\/span> value)<\/span> <\/span>{\r\n    <span class=\"hljs-comment\">\/\/ \u56de\u8c03\u51fd\u6570\u7684\u5b9e\u73b0<\/span>\r\n    std::cout &lt;&lt; <span class=\"hljs-string\">\"Callback value: \"<\/span> &lt;&lt; value &lt;&lt; std::endl;\r\n}\r\n\r\n<span class=\"hljs-function\"><span class=\"hljs-type\">int<\/span> <span class=\"hljs-title\">main<\/span><span class=\"hljs-params\">()<\/span> <\/span>{\r\n    std::function&lt;<span class=\"hljs-type\">void<\/span>(<span class=\"hljs-type\">int<\/span>)&gt; myCallback = MyCallback; <span class=\"hljs-comment\">\/\/ \u521b\u5efa\u56de\u8c03\u51fd\u6570\u5bf9\u8c61<\/span>\r\n    <span class=\"hljs-built_in\">RegisterCallback<\/span>(myCallback); <span class=\"hljs-comment\">\/\/ \u6ce8\u518c\u56de\u8c03\u51fd\u6570<\/span>\r\n    <span class=\"hljs-keyword\">return<\/span> <span class=\"hljs-number\">0<\/span>;\r\n}\r\n<\/code><\/pre>\n<p>\u3044\u305a\u308c\u306e\u65b9\u6cd5\u3067\u3082\u3001\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u3067\u6e21\u3057\u3001\u547c\u3073\u51fa\u3057\u6642\u306b\u5229\u7528\u53ef\u80fd\u3067\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5728C++\u4e2d\uff0c\u56de\u8c03\u51fd\u6570\u53ef\u4ee5\u901a\u8fc7\u4ee5\u4e0b\u51e0\u79cd\u65b9\u5f0f\u6765\u4f20\u9012\u53c2\u6570\uff1a \u51fd\u6570\u6307\u9488\u4f20\u53c2\uff1a\u5b9a\u4e49\u4e00\u4e2a\u51fd\u6570\u6307\u9488\u7c7b\u578b\uff0c\u7136\u540e\u5c06\u56de\u8c03\u51fd\u6570\u7684\u5730\u5740\u4f20\u9012\u7ed9\u8be5\u6307\u9488\u53c2\u6570\u3002\u56de\u8c03\u51fd\u6570\u7684\u53c2\u6570\u53ef\u4ee5\u76f4\u63a5\u5728\u51fd\u6570\u6307\u9488\u7c7b\u578b\u4e2d\u8fdb\u884c\u5b9a\u4e49\u3002 typedef void (*Callba [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-101802","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>C++\u306e\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u65b9\u6cd5\u306f\uff1f - Blog - Silicon Cloud<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.silicloud.com\/ja\/blog\/c\u306e\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u65b9\u6cd5\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C++\u306e\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u65b9\u6cd5\u306f\uff1f\" \/>\n<meta property=\"og:description\" content=\"\u5728C++\u4e2d\uff0c\u56de\u8c03\u51fd\u6570\u53ef\u4ee5\u901a\u8fc7\u4ee5\u4e0b\u51e0\u79cd\u65b9\u5f0f\u6765\u4f20\u9012\u53c2\u6570\uff1a \u51fd\u6570\u6307\u9488\u4f20\u53c2\uff1a\u5b9a\u4e49\u4e00\u4e2a\u51fd\u6570\u6307\u9488\u7c7b\u578b\uff0c\u7136\u540e\u5c06\u56de\u8c03\u51fd\u6570\u7684\u5730\u5740\u4f20\u9012\u7ed9\u8be5\u6307\u9488\u53c2\u6570\u3002\u56de\u8c03\u51fd\u6570\u7684\u53c2\u6570\u53ef\u4ee5\u76f4\u63a5\u5728\u51fd\u6570\u6307\u9488\u7c7b\u578b\u4e2d\u8fdb\u884c\u5b9a\u4e49\u3002 typedef void (*Callba [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/ja\/blog\/c\u306e\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u65b9\u6cd5\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-21T19:28:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-26T18:13:57+00:00\" \/>\n<meta name=\"author\" content=\"\u6d77\u6597, \u8475\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u6d77\u6597, \u8475\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/c%e3%81%ae%e3%82%b3%e3%83%bc%e3%83%ab%e3%83%90%e3%83%83%e3%82%af%e9%96%a2%e6%95%b0%e3%81%ab%e3%83%91%e3%83%a9%e3%83%a1%e3%83%bc%e3%82%bf%e3%83%bc%e3%82%92%e6%b8%a1%e3%81%99%e6%96%b9%e6%b3%95\/\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/c%e3%81%ae%e3%82%b3%e3%83%bc%e3%83%ab%e3%83%90%e3%83%83%e3%82%af%e9%96%a2%e6%95%b0%e3%81%ab%e3%83%91%e3%83%a9%e3%83%a1%e3%83%bc%e3%82%bf%e3%83%bc%e3%82%92%e6%b8%a1%e3%81%99%e6%96%b9%e6%b3%95\/\",\"name\":\"C++\u306e\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u65b9\u6cd5\u306f\uff1f - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\"},\"datePublished\":\"2024-03-21T19:28:56+00:00\",\"dateModified\":\"2024-03-26T18:13:57+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/20cfc053626f4d45c0fa7a4e7964b5b6\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/c%e3%81%ae%e3%82%b3%e3%83%bc%e3%83%ab%e3%83%90%e3%83%83%e3%82%af%e9%96%a2%e6%95%b0%e3%81%ab%e3%83%91%e3%83%a9%e3%83%a1%e3%83%bc%e3%82%bf%e3%83%bc%e3%82%92%e6%b8%a1%e3%81%99%e6%96%b9%e6%b3%95\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/ja\/blog\/c%e3%81%ae%e3%82%b3%e3%83%bc%e3%83%ab%e3%83%90%e3%83%83%e3%82%af%e9%96%a2%e6%95%b0%e3%81%ab%e3%83%91%e3%83%a9%e3%83%a1%e3%83%bc%e3%82%bf%e3%83%bc%e3%82%92%e6%b8%a1%e3%81%99%e6%96%b9%e6%b3%95\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/c%e3%81%ae%e3%82%b3%e3%83%bc%e3%83%ab%e3%83%90%e3%83%83%e3%82%af%e9%96%a2%e6%95%b0%e3%81%ab%e3%83%91%e3%83%a9%e3%83%a1%e3%83%bc%e3%82%bf%e3%83%bc%e3%82%92%e6%b8%a1%e3%81%99%e6%96%b9%e6%b3%95\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/ja\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C++\u306e\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u65b9\u6cd5\u306f\uff1f\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/\",\"name\":\"Blog - Silicon Cloud\",\"description\":\"\",\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/20cfc053626f4d45c0fa7a4e7964b5b6\",\"name\":\"\u6d77\u6597, \u8475\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/25aec9a18954b6bfb7e4f7219c2923d62c6f0c9f4d5c0171228fe41751c0ab7a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/25aec9a18954b6bfb7e4f7219c2923d62c6f0c9f4d5c0171228fe41751c0ab7a?s=96&d=mm&r=g\",\"caption\":\"\u6d77\u6597, \u8475\"},\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/author\/kaitoaoi\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/c%e3%81%ae%e3%82%b3%e3%83%bc%e3%83%ab%e3%83%90%e3%83%83%e3%82%af%e9%96%a2%e6%95%b0%e3%81%ab%e3%83%91%e3%83%a9%e3%83%a1%e3%83%bc%e3%82%bf%e3%83%bc%e3%82%92%e6%b8%a1%e3%81%99%e6%96%b9%e6%b3%95\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"C++\u306e\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u65b9\u6cd5\u306f\uff1f - Blog - Silicon Cloud","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.silicloud.com\/ja\/blog\/c\u306e\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u65b9\u6cd5\/","og_locale":"ja_JP","og_type":"article","og_title":"C++\u306e\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u65b9\u6cd5\u306f\uff1f","og_description":"\u5728C++\u4e2d\uff0c\u56de\u8c03\u51fd\u6570\u53ef\u4ee5\u901a\u8fc7\u4ee5\u4e0b\u51e0\u79cd\u65b9\u5f0f\u6765\u4f20\u9012\u53c2\u6570\uff1a \u51fd\u6570\u6307\u9488\u4f20\u53c2\uff1a\u5b9a\u4e49\u4e00\u4e2a\u51fd\u6570\u6307\u9488\u7c7b\u578b\uff0c\u7136\u540e\u5c06\u56de\u8c03\u51fd\u6570\u7684\u5730\u5740\u4f20\u9012\u7ed9\u8be5\u6307\u9488\u53c2\u6570\u3002\u56de\u8c03\u51fd\u6570\u7684\u53c2\u6570\u53ef\u4ee5\u76f4\u63a5\u5728\u51fd\u6570\u6307\u9488\u7c7b\u578b\u4e2d\u8fdb\u884c\u5b9a\u4e49\u3002 typedef void (*Callba [&hellip;]","og_url":"https:\/\/www.silicloud.com\/ja\/blog\/c\u306e\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u65b9\u6cd5\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2024-03-21T19:28:56+00:00","article_modified_time":"2024-03-26T18:13:57+00:00","author":"\u6d77\u6597, \u8475","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"\u6d77\u6597, \u8475","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"1\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/ja\/blog\/c%e3%81%ae%e3%82%b3%e3%83%bc%e3%83%ab%e3%83%90%e3%83%83%e3%82%af%e9%96%a2%e6%95%b0%e3%81%ab%e3%83%91%e3%83%a9%e3%83%a1%e3%83%bc%e3%82%bf%e3%83%bc%e3%82%92%e6%b8%a1%e3%81%99%e6%96%b9%e6%b3%95\/","url":"https:\/\/www.silicloud.com\/ja\/blog\/c%e3%81%ae%e3%82%b3%e3%83%bc%e3%83%ab%e3%83%90%e3%83%83%e3%82%af%e9%96%a2%e6%95%b0%e3%81%ab%e3%83%91%e3%83%a9%e3%83%a1%e3%83%bc%e3%82%bf%e3%83%bc%e3%82%92%e6%b8%a1%e3%81%99%e6%96%b9%e6%b3%95\/","name":"C++\u306e\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u65b9\u6cd5\u306f\uff1f - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website"},"datePublished":"2024-03-21T19:28:56+00:00","dateModified":"2024-03-26T18:13:57+00:00","author":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/20cfc053626f4d45c0fa7a4e7964b5b6"},"breadcrumb":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/c%e3%81%ae%e3%82%b3%e3%83%bc%e3%83%ab%e3%83%90%e3%83%83%e3%82%af%e9%96%a2%e6%95%b0%e3%81%ab%e3%83%91%e3%83%a9%e3%83%a1%e3%83%bc%e3%82%bf%e3%83%bc%e3%82%92%e6%b8%a1%e3%81%99%e6%96%b9%e6%b3%95\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/ja\/blog\/c%e3%81%ae%e3%82%b3%e3%83%bc%e3%83%ab%e3%83%90%e3%83%83%e3%82%af%e9%96%a2%e6%95%b0%e3%81%ab%e3%83%91%e3%83%a9%e3%83%a1%e3%83%bc%e3%82%bf%e3%83%bc%e3%82%92%e6%b8%a1%e3%81%99%e6%96%b9%e6%b3%95\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/ja\/blog\/c%e3%81%ae%e3%82%b3%e3%83%bc%e3%83%ab%e3%83%90%e3%83%83%e3%82%af%e9%96%a2%e6%95%b0%e3%81%ab%e3%83%91%e3%83%a9%e3%83%a1%e3%83%bc%e3%82%bf%e3%83%bc%e3%82%92%e6%b8%a1%e3%81%99%e6%96%b9%e6%b3%95\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/ja\/blog\/"},{"@type":"ListItem","position":2,"name":"C++\u306e\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u6e21\u3059\u65b9\u6cd5\u306f\uff1f"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website","url":"https:\/\/www.silicloud.com\/ja\/blog\/","name":"Blog - Silicon Cloud","description":"","inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/20cfc053626f4d45c0fa7a4e7964b5b6","name":"\u6d77\u6597, \u8475","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/25aec9a18954b6bfb7e4f7219c2923d62c6f0c9f4d5c0171228fe41751c0ab7a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/25aec9a18954b6bfb7e4f7219c2923d62c6f0c9f4d5c0171228fe41751c0ab7a?s=96&d=mm&r=g","caption":"\u6d77\u6597, \u8475"},"url":"https:\/\/www.silicloud.com\/ja\/blog\/author\/kaitoaoi\/"},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/c%e3%81%ae%e3%82%b3%e3%83%bc%e3%83%ab%e3%83%90%e3%83%83%e3%82%af%e9%96%a2%e6%95%b0%e3%81%ab%e3%83%91%e3%83%a9%e3%83%a1%e3%83%bc%e3%82%bf%e3%83%bc%e3%82%92%e6%b8%a1%e3%81%99%e6%96%b9%e6%b3%95\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/101802","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/comments?post=101802"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/101802\/revisions"}],"predecessor-version":[{"id":170210,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/101802\/revisions\/170210"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/media?parent=101802"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/categories?post=101802"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/tags?post=101802"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}