Building on the fundamentals, this course explores more complex C++ features including arrays, strings, input/output operations, and functions. Learners will develop modular programming skills and learn to structure their code for reusability and maintainability. The course introduces GenAI tools for code generation to enhance productivity and provides practical experience with file handling and external libraries.

推荐体验
推荐体验
初级
Comfort with using a computer (installing software, navigating files and folders, using basic productivity tools) is helpful.
推荐体验
推荐体验
初级
Comfort with using a computer (installing software, navigating files and folders, using basic productivity tools) is helpful.
您将学到什么
1. Write, debug, and compile C++ programs that solve real problems.
2. Apply modular and object-oriented programming principles.
您将获得的技能
您将学习的工具
要了解的详细信息
了解顶级公司的员工如何掌握热门技能

积累 Algorithms 领域的专业知识
- 向行业专家学习新概念
- 获得对主题或工具的基础理解
- 通过实践项目培养工作相关技能
- 通过 Microsoft 获得可共享的职业证书

该课程共有5个模块
Arrays and String Manipulation enhances your C++ capabilities by teaching you to work with collections of data and process text through both legacy and modern approaches, emphasizing safety, performance, and best practices. You'll learn to declare and manipulate single and multi-dimensional arrays using both C-style arrays and modern std::array containers, implement common operations like sorting and searching algorithms, handle matrix-based computations for mathematical applications, and process text efficiently using std::string methods while understanding the security vulnerabilities and limitations of C-style strings. Through hands-on activities progressing from basic array operations to building comprehensive text analyzers and matrix manipulation programs, you'll develop skills in memory layout optimization, bounds checking, Unicode handling for international applications, and selecting appropriate data structures based on safety and performance trade-offs. These intermediate skills are essential for real-world development across diverse domains—from database management and scientific computing that rely on efficient array-based data processing, to game development requiring multi-dimensional coordinate systems and collision detection, to web applications and natural language processing tools that demand secure, efficient text manipulation—where your ability to handle collections of data safely, process text securely, and optimize memory usage directly impacts application performance, security, and reliability in professional software environments.
涵盖的内容
6个视频5篇阅读材料4个作业6个非评分实验室
6个视频• 总计29分钟
- Welcome to C++ and Its Modern Applications• 3分钟
- Arrays in Real-World Data Processing• 10分钟
- Why Multi-dimensional Arrays Power Everything from Games to AI• 3分钟
- Multi-dimensional Arrays in Professional Applications• 4分钟
- Why String Handling Separates Secure Applications from Security Nightmares• 3分钟
- String Processing in Modern Applications• 6分钟
5篇阅读材料• 总计50分钟
- Course Syllabus• 10分钟
- Array Declaration, Initialization, and Memory Layout• 10分钟
- 2D Arrays, Memory Layout, and Matrix Algorithms• 10分钟
- C-style vs. Modern Strings, Methods, and Unicode Support• 10分钟
- Module 1 Reference Guide• 10分钟
4个作业• 总计120分钟
- Array Implementation and Safety Assessment• 30分钟
- Matrix Operations and Algorithm Complexity• 30分钟
- String Manipulation and Security • 30分钟
- Module 1 Comprehensive Evaluation• 30分钟
6个非评分实验室• 总计360分钟
- Array Declaration and Access Patterns Activity• 60分钟
- Comprehensive Array Operations Program• 60分钟
- 2D Array Operations and Traversal Patterns• 60分钟
- Matrix Manipulation Program• 60分钟
- String Method Practice and Safety Comparisons• 60分钟
- Comprehensive Text Analyzer• 60分钟
Input/Output Operations expands your C++ expertise by teaching you to handle data flow between applications and external sources through console interfaces, file systems, and modern I/O techniques, transforming basic programs into production-ready systems. You'll learn to create professional console applications with advanced stream manipulators for formatting precision and alignment, implement robust input validation with comprehensive error handling, manage file operations for reading and writing both text and binary data using C++17's filesystem API, and leverage modern C++20/C++23 features including std::format and std::print for type-safe, simplified output operations. Through hands-on activities progressing from formatted report generators to data logger applications and comprehensive input validation systems, you'll develop skills in stream state management, error recovery strategies, complex data format parsing, and user interface design that balances functionality with accessibility. These I/O capabilities are fundamental for real-world applications across all domains—from system administration tools and backup systems that require reliable file handling, to data processing pipelines and business reporting applications demanding professional formatting and validation, to production systems processing structured data formats like CSV and JSON—where your ability to safely read external data, gracefully handle errors, persist information reliably, and present output professionally determines application robustness, data integrity, and user experience quality.
涵盖的内容
6个视频4篇阅读材料4个作业6个非评分实验室
6个视频• 总计27分钟
- Why Professional Console Applications Create Better User Experiences Than Most GUIs• 3分钟
- Professional Console Applications and User Experience• 6分钟
- Why File I/O Skills Unlock Data-Driven Programming Careers• 3分钟
- File I/O in Data-Driven Applications• 6分钟
- Why Advanced I/O Techniques Separate Robust Applications from Fragile Prototypes• 3分钟
- Advanced I/O in Production Systems• 6分钟
4篇阅读材料• 总计40分钟
- Advanced Stream Usage and Formatting Manipulators• 10分钟
- File Streams, Binary vs. Text Operations, and Filesystem API• 10分钟
- Stream State Management and Modern Formatting Features• 10分钟
- Module 2 Reference Guide• 10分钟
4个作业• 总计120分钟
- Console I/O and Formatting• 30分钟
- File I/O and Data Persistence Assessment• 30分钟
- Advanced I/O and Modern C++ Features Assessment• 30分钟
- Module 2 Comprehensive Evaluation• 30分钟
6个非评分实验室• 总计360分钟
- Console Input Validation and Formatting• 60分钟
- Formatted Report Generator• 60分钟
- File I/O Operations and Data Processing• 60分钟
- Data Logger Application• 60分钟
- Advanced Stream Management and Data Validation• 60分钟
- Comprehensive Input Validation System• 60分钟
Functions and Modular Programming transforms your approach to software development by teaching you to create reusable, maintainable code through function design, advanced function techniques, and systematic code organization strategies that enable scalable application architecture. You'll learn to design functions with optimal parameter passing methods for performance and clarity, implement function overloading to create versatile interfaces, apply recursion to solve algorithmic problems while comparing recursive and iterative approaches, and organize code using namespaces and modern C++20 modules to prevent naming conflicts and improve project structure. Through hands-on activities progressing from basic function creation to refactoring monolithic programs into modular architectures and implementing recursive algorithms with performance analysis, you'll develop skills in code reusability, interface design, stack frame analysis, separation of concerns, and architectural decision-making. These modular programming principles are essential for professional software development across all industries—from game development and web applications requiring team collaboration on shared codebases, to large enterprise systems demanding clear organizational hierarchies and conflict prevention, to API design where intuitive function interfaces determine developer experience—where your ability to eliminate code duplication, create maintainable function-based architectures, and organize complex projects systematically directly impacts development efficiency, team productivity, code quality, and long-term software maintainability in collaborative professional environments.
涵盖的内容
6个视频4篇阅读材料4个作业6个非评分实验室
6个视频• 总计30分钟
- Why Functions Transform Chaotic Code into Maintainable Software• 3分钟
- Functions in Professional Software Architecture• 7分钟
- Why Advanced Function Techniques Create APIs That Developers Love to Use• 3分钟
- Advanced Function Techniques in Professional Development• 7分钟
- Why Code Organization Determines Whether Your Project Scales or Collapses• 3分钟
- Code Organization in Large Software Projects• 7分钟
4篇阅读材料• 总计40分钟
- Function Syntax, Parameter Passing, and Return Types• 10分钟
- Function Overloading, Default Parameters, and Recursion• 10分钟
- Namespace Creation, Code Organization, and C++20 Modules• 10分钟
- Module 3 Reference Guide• 10分钟
4个作业• 总计120分钟
- Function Implementation and Design• 30分钟
- Advanced Function Techniques and Algorithm Selection • 30分钟
- Code Organization and Namespace • 30分钟
- Module 3 Comprehensive Evaluation• 30分钟
6个非评分实验室• 总计360分钟
- Function Creation and Parameter Passing Practice• 60分钟
- Code Refactoring with Functions• 60分钟
- Function Overloading and Recursion Practice• 60分钟
- Recursive vs. Iterative Algorithm Comparison• 60分钟
- Namespace Creation and Organization Practice• 60分钟
- Modular Code Architecture Design• 60分钟
External Libraries and GenAI for Code Generation elevates your development capabilities by teaching you to extend application functionality through third-party libraries and leverage modern AI coding assistants to accelerate development while maintaining professional quality standards. You'll learn to discover, evaluate, and integrate external C++ libraries using modern build systems, including CMake, vcpkg, and Conan for dependency management, understand static versus dynamic linking and proper header file organization, and effectively use AI tools like GitHub Copilot, ChatGPT, and Claude to generate code snippets, functions, and program components while critically evaluating their output. Through hands-on activities that progress from library integration projects to AI-assisted development workflows, you'll develop skills in building system configuration, dependency resolution, quality assurance for AI-generated code, code adaptation and refactoring, and establishing collaborative development practices that balance AI assistance with human expertise. These modern development capabilities are transformative for professional software engineering—from integrating powerful libraries for JSON parsing, HTTP communication, or graphics rendering that would take months to build independently, to using AI tools that accelerate routine coding tasks and reduce boilerplate while you maintain critical oversight for correctness and style—where your ability to leverage existing solutions, manage complex dependencies, critically evaluate AI assistance, and integrate modern tools into workflows directly impacts development velocity, project scope possibilities, code quality maintenance, and your competitiveness in contemporary software development environments that increasingly expect proficiency with both external libraries and AI-assisted coding practices.
涵盖的内容
6个视频4篇阅读材料4个作业6个非评分实验室
6个视频• 总计28分钟
- Why External Libraries Transform You from Code Writer to Software Architect• 3分钟
- External Libraries in Professional Development• 7分钟
- Why AI Coding Assistants Are Changing What It Means to Be a Programmer• 3分钟
- AI Coding Assistants in Modern Development• 6分钟
- Why AI Integration Skills Separate Amateur Coders from Professional Development Teams• 3分钟
- AI Integration in Professional Development Teams• 7分钟
4篇阅读材料• 总计40分钟
- Library Discovery, Integration, and Build Systems• 10分钟
- AI Code Generation Tools and Configuration• 10分钟
- Advanced AI Integration and Quality Assurance Workflows• 10分钟
- Module 4 Reference Guide• 10分钟
4个作业• 总计120分钟
- Library Integration and Build System • 30分钟
- AI Coding Tools and Quality Assurance Assessment• 30分钟
- Advanced AI Integration and Collaborative Development• 30分钟
- Module 4 Comprehensive Evaluation• 30分钟
6个非评分实验室• 总计360分钟
- Library Integration and Build Configuration Practice• 60分钟
- Complete External Library Integration Project• 60分钟
- AI-Assisted Code Generation Practice• 60分钟
- AI-Assisted Development Workflow• 60分钟
- AI Code Integration and Quality Assurance Practice• 60分钟
- Comprehensive AI-Assisted Project Development• 60分钟
The Hands On Course Project synthesizes your intermediate C++ expertise through a comprehensive capstone experience where you design and build a sophisticated data processing application that integrates arrays and string manipulation, file I/O operations, modular function architecture, external library integration, and AI-assisted development workflows into a cohesive, professional-quality solution. You'll progress through industry-standard development phases—systematic design and planning with detailed architecture specifications and library selection, implementation, applying all intermediate concepts with modern AI assistance for code generation and optimization, and comprehensive testing, including unit tests, integration tests, and performance analysis with AI-powered code review. This capstone experience simulates real-world intermediate-level development scenarios found in business applications, scientific computing systems, and data analysis platforms where multiple technical skills must work together seamlessly to solve complex problems. The project culminates in professional deliverables including complete source code, technical documentation, testing reports, user guides, and an AI integration analysis that collectively demonstrate your readiness for advanced C++ programming challenges and intermediate-level professional software development roles, while providing portfolio-worthy evidence of your ability to independently design, implement, test, document, and optimize complete applications using modern development practices that balance human expertise with AI assistance for maximum productivity and code quality.
涵盖的内容
1个视频3篇阅读材料1个作业1个非评分实验室
1个视频• 总计4分钟
- Capstone Projects and Professional Skill Integration• 4分钟
3篇阅读材料• 总计30分钟
- Comprehensive Data Processing Application Project Overview• 10分钟
- Data Processing Application: Capstone Project• 10分钟
- Course Completion and Professional Next Steps• 10分钟
1个作业• 总计30分钟
- Data Processing Application: Capstone Project• 30分钟
1个非评分实验室• 总计60分钟
- Data Processing Application: Capstone Project• 60分钟
获得职业证书
将此证书添加到您的 LinkedIn 个人资料、简历或履历中。在社交媒体和绩效考核中分享。
位教师

提供方

提供方

Our goal at Microsoft is to empower every individual and organization on the planet to achieve more. In this next revolution of digital transformation, growth is being driven by technology. Our integrated cloud approach creates an unmatched platform for digital transformation. We address the real-world needs of customers by seamlessly integrating Microsoft 365, Dynamics 365, LinkedIn, GitHub, Microsoft Power Platform, and Azure to unlock business value for every organization—from large enterprises to family-run businesses. The backbone and foundation of this is Azure.
人们为什么选择 Coursera 来帮助自己实现职业发展

Felipe M.

Jennifer J.

Larry W.

Chaitanya A.
从 Computer Science 浏览更多内容
MMicrosoft
课程

课程

课程
¹ 本课程的部分作业采用 AI 评分。对于这些作业,将根据 Coursera 隐私声明使用您的数据。


