{"id":15131040,"url":"https://github.com/czs108/cpp-primer-5th-notes-cn","last_synced_at":"2025-09-28T21:30:48.214Z","repository":{"id":40326412,"uuid":"134432495","full_name":"czs108/Cpp-Primer-5th-Notes-CN","owner":"czs108","description":"📚 《C++ Primer中文版（第5版）》笔记","archived":true,"fork":false,"pushed_at":"2023-11-05T18:39:13.000Z","size":240,"stargazers_count":1216,"open_issues_count":0,"forks_count":335,"subscribers_count":19,"default_branch":"master","last_synced_at":"2024-11-08T01:37:50.525Z","etag":null,"topics":["cpp11","document"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/czs108.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-05-22T15:03:00.000Z","updated_at":"2024-11-08T00:56:25.000Z","dependencies_parsed_at":"2023-02-05T00:16:18.756Z","dependency_job_id":"dcacd227-de6a-468d-994b-79271051211f","html_url":"https://github.com/czs108/Cpp-Primer-5th-Notes-CN","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/czs108%2FCpp-Primer-5th-Notes-CN","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/czs108%2FCpp-Primer-5th-Notes-CN/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/czs108%2FCpp-Primer-5th-Notes-CN/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/czs108%2FCpp-Primer-5th-Notes-CN/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/czs108","download_url":"https://codeload.github.com/czs108/Cpp-Primer-5th-Notes-CN/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234563133,"owners_count":18853059,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp11","document"],"created_at":"2024-09-26T03:21:57.284Z","updated_at":"2025-09-28T21:30:42.691Z","avatar_url":"https://github.com/czs108.png","language":null,"readme":"# 《C++ Primer中文版（第5版）》笔记\n\n![Cover](Cover.png)\n\n## 目录\n\n[第1章 开始](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-1%20Getting%20Started)\n\n### 第I部分 C++基础\n\n[第2章 变量和基本类型](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-2%20Variables%20and%20Basic%20Types)\n\n[第3章 字符串、向量和数组](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-3%20Strings%2C%20Vectors%2C%20and%20Arrays)\n\n[第4章 表达式](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-4%20Expressions)\n\n[第5章 语句](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-5%20Statements)\n\n[第6章 函数](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-6%20Functions)\n\n[第7章 类](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-7%20Classes)\n\n### 第II部分 C++标准库\n\n[第8章 IO库](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-8%20The%20IO%20Library)\n\n[第9章 顺序容器](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-9%20Sequential%20Containers)\n\n[第10章 泛型算法](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-10%20Generic%20Algorithms)\n\n[第11章 关联容器](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-11%20Associative%20Containers)\n\n[第12章 动态内存](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-12%20Dynamic%20Memory)\n\n### 第III部分 类设计者的工具\n\n[第13章 拷贝控制](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-13%20Copy%20Control)\n\n[第14章 操作重载与类型转换](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-14%20Overloaded%20Operations%20and%20Conversions)\n\n[第15章 面向对象程序设计](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-15%20Object-Oriented%20Programming)\n\n[第16章 模板与泛型编程](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-16%20Templates%20and%20Generic%20Programming)\n\n### 第IV部分 高级主题\n\n[第17章 标准库特殊设施](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-17%20Specialized%20Library%20Facilities)\n\n[第18章 用于大型程序的工具](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-18%20Tools%20for%20Large%20Programs)\n\n[第19章 特殊工具与技术](https://github.com/czs108/Cpp-Primer-5th-Note-CN/tree/master/Chapter-19%20Specialized%20Tools%20and%20Techniques)\n\n## 关于\n\n***GitHub***：https://github.com/czs108","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fczs108%2Fcpp-primer-5th-notes-cn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fczs108%2Fcpp-primer-5th-notes-cn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fczs108%2Fcpp-primer-5th-notes-cn/lists"}