积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(121)Julia(87)Python(20)数据库(14)PostgreSQL(14)C++(12)综合其他(1)笔试面试(1)其它语言(1)Pascal(1)

语言

全部英语(123)中文(繁体)(10)中文(简体)(3)

格式

全部PDF文档 PDF(134)PPT文档 PPT(2)
 
本次搜索耗时 0.016 秒,为您找到相关结果约 136 个.
  • 全部
  • 后端开发
  • Julia
  • Python
  • 数据库
  • PostgreSQL
  • C++
  • 综合其他
  • 笔试面试
  • 其它语言
  • Pascal
  • 全部
  • 英语
  • 中文(繁体)
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • ppt文档 C++高性能并行编程与优化 - 课件 - 15 C++ 系列课:字符与字符串

    C++ 的 vector 采用了 [ptr, ptr + len, ptr + capacity] 构型。 vector 没有采用小字符串优化…这是因为 string 面对的都 是 char , wchar_t 这种比较小的类型,且用户常用的字符 串往往比较短很容易放进 15 字节的局部栈空间里;然而 vector 面对的往往是比较大的数据结构,有时还有智能指 针, std::thread 这种具有非平凡构造 表示这么宽的字符?有很多种解决方案。 • 一种方案是:索性放弃 char ,改用 wchar_t 做字符类型 。 • wchar_t 在 Linux 上为 4 字节,完全足够表示 Unicode 这 0x000000~0x10FFFF 的范围,甚至还有 1 字节浪费 。 wchar_t 的普及 • 所以他们提议:以后用 const wchar_t * 代替 const char * 。 • 或者继续用 组。并且现在 ‘ \0’ 也不能用作结束符了,因为 wchar_t 的最高位始终 0 (因为 Unicode 只有 3 字节, wchar_t 的 4 字节有一个字节总是为 0 的),这会导致现有的 C 语言函数用不了,例如 strlen(s) 现在总是会返回 3 了。 • 因此 C 语言为了适应这个变化,推出了专门针对 wchar_t 的 wcslen 、 wcscpy 、 wmemset
    0 码力 | 162 页 | 40.20 MB | 1 年前
    3
  • pdf文档 Template Metaprogramming: Type Traits

    types • Corresponding, but different, unsigned integer types • char, char8_t, char16_t, char32_t, wchar_t is_integral 49• Five standard signed integer types: signed char, short int, int, long int, long types • Corresponding, but different, unsigned integer types • char, char8_t, char16_t, char32_t, wchar_t • bool is_integral 49• Five standard signed integer types: signed char, short int, int, long types • Corresponding, but different, unsigned integer types • char, char8_t, char16_t, char32_t, wchar_t • bool • Requires 16*4 = 64 specializations is_integral 49is_integral 50 template
    0 码力 | 403 页 | 5.30 MB | 6 月前
    3
  • ppt文档 Making Libraries Consumable for Non-C++ Developers

    ng_view const dev); The types char and wchar_t do not indicate encoding. The size of wchar_t: • Windows, sizeof(wchar_t) == 2 • Non-Windows, sizeof(wchar_t) == 4 std::basic_string has memory
    0 码力 | 29 页 | 1.21 MB | 6 月前
    3
  • pdf文档 LITERALS SAFELY for Types that Behave as though Built-in - Pablo Halpern - CppCon 2021

    and string literals can each have up to 5 overloads, one for each built-in character width: char, wchar_t, char8_t, char16_t, and char32_t. ■ Integer overflow results in an error; floating-point over/underflow 45e-6_udl T operator""_udl(long double); 'a'_udl T operator""_udl(char); L'b'_udl T operator""_udl(wchar_t); u8'c'_udl T operator""_udl(char8_t); (since C++20) u'\u2190'_udl T operator""_udl(char16_t); "Hello"_udl T operator""_udl(const char*, std::size_t); L"World"_udl T operator""_udl(const wchar_t*, std::size_t); u8"Alpha\U0001F600"_udl T operator""_udl(const char8_t*, std::size_t); u"Beta
    0 码力 | 66 页 | 1.47 MB | 6 月前
    3
  • pdf文档 Implementing C++ Modules: Lessons Learned, Lessons Abandoned

    _WINRT_WindowsCreateString@12 referenced in function "void * __cdecl winrt::impl::create_string(wchar_t const *,unsigned int)" (?create_string@impl@winrt@@YAPAXPB_WI@Z) app3.obj : error LNK2019: unresolved referenced in function "private: int __thiscall winrt::param::hstring::create_string_reference(wchar_t const * const,unsigned int)" (?create string reference@hstring@param@winrt@@AAEHQB WI@Z) 17 (C)
    0 码力 | 53 页 | 1.33 MB | 6 月前
    3
  • pdf文档 Back to Basics: C++ Templates - Part 2

    } 7 auto Normalize(const char* t, locale_s) { return std::string{t}; } 8 auto Normalize(const wchar_t* t, locale_s) { return Normalize(std::wstring{t}, locale_s{}); } 9 template auto Normalize(const char* t, locale_ws) { return Normalize(std::string{t}, locale_ws{}); } 15 auto Normalize(const wchar_t* t, locale_ws) { return std::wstring{t}; } 16 template auto Normalize(const T& t, locale_ws)
    0 码力 | 12 页 | 787.22 KB | 6 月前
    3
  • pdf文档 Exceptional C++

    "sourceFile:lineNo" if (::SymGetLineFromAddr(mProcess, aAddress, &displacement, &line)) { wchar_t origin[MAX_PATH]; swprintf_s(origin, MAX_PATH, L"%s:%ld", line.FileName, line.LineNumber); tion(EXCEPTION_POINTERS * aExceptionInfo) { wstring message(L"[EXCEPTION_UNHANDLED] "); wchar_t buf[MSG_BUFFER_LEN]; swprintf_s(buf, MSG_BUFFER_LEN, L"(0x%.8x) at address " ADDRESS_FORMAT SW_EOL
    0 码力 | 113 页 | 24.39 MB | 6 月前
    3
  • pdf文档 Google C++ Style Guide

    non-UTF-8 text. For similar reasons you also shouldn’t use wchar_t 66 (unless you’re writing code that interacts with the Windows API, which uses wchar_t extensively). Spaces vs. Tabs Use only spaces, and
    0 码力 | 83 页 | 238.71 KB | 1 年前
    3
  • pdf文档 C++20 Modules: The Packaging and Binary Redistribution Story

    include\fmt\xchar.h(236): note: could be 'void fmt::v10::print<>(fmt::v10::basic_format_string<wchar_t>)' With msvc this actually works But if there are compiler errors, non existent files might be
    0 码力 | 76 页 | 2.09 MB | 6 月前
    3
  • pdf文档 So You Think You Can Hash

    char>; template<> struct hash; template<> struct hash; template<> struct hash<wchar_t>; template<> struct hash; template<> struct hash; template<> struct hash;
    0 码力 | 119 页 | 6.54 MB | 6 月前
    3
共 136 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 14
前往
页
相关搜索词
C++高性性能高性能并行编程优化课件15TemplateMetaprogrammingTypeTraitsMakingLibrariesConsumableforNonDevelopersLITERALSSAFELYTypesthatBehaveasthoughBuiltinPabloHalpernCppCon2021ImplementingModulesLessonsLearnedAbandonedBacktoBasicsTemplatesPartExceptionalGoogleStyleGuide20ThePackagingandBinaryRedistributionStorySoYouThinkCanHash
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩