Skip to main content

Warenkorb

Sie werden jetzt wie ein VIP behandelt!

Artikel nicht erhältlich
Bitte überprüfen Sie Ihren Warenkorb. Sie können nicht verfügbare Artikel jetzt entfernen. Andernfalls werden diese beim Bezahlen automatisch entfernt.
ElementeElement
ElementeElement

Empfehlungen für Sie

Loading...

C++ eBooks

Lesen Sie gerne eBooks aus der Kategorie C++? Dann werden Ihnen unsere Empfehlungen sicherlich gefallen.
Es werden 124 von 630 Ergebnissen angezeigt
Skip side bar filters
  • Update to Modern C++

    von James Raynard
    Are you an experienced C++ programmer, but you have not used the language for several years? You may have heard that there have been many changes to C++ over the last decade or so, but you have not had time to keep up with them. Besides, your C++ skills may have gone a little rusty due to lack of use, and perhaps there were one or two things you never quite grasped the first time round.I was in Lesen Sie mehr

    € 8,49

  • Arduino MKR WIFI 1010 Development Workshop

    von Agus Kurniawan
    Arduino MKR WIFI 1010 is a new Arduino board with WiFi capability that enables to build IoT application. This book helps you to get started with Arduino MKR WIFI 1010. The following is a list of topics in this book.Setting up Development EnvironmentSketch ProgrammingWorking with SPIWorking with I2CArduino WiFi NetworkingWorking with Internal RTC and Sleep Mode Lesen Sie mehr

    € 2,80

  • Effective Modern C++

    42 Specific Ways to Improve Your Use of C++11 and C++14

    von Scott Meyers
    Coming to grips with C++11 and C++14 is more than a matter of familiarizing yourself with the features they introduce (e.g., auto type declarations, move semantics, lambda expressions, and concurrency support). The challenge is learning to use those features effectively—so that your software is correct, efficient, maintainable, and portable. That’s where this practical book comes in. It describes Lesen Sie mehr

    € 30,57

  • The Art of Concurrency

    A Thread Monkey's Guide to Writing Parallel Applications

    von Clay Breshears
    If you're looking to take full advantage of multi-core processors with concurrent programming, this practical book provides the knowledge and hands-on experience you need. The Art of Concurrency is one of the few resources to focus on implementing algorithms in the shared-memory model of multi-core processors, rather than just theoretical models or distributed-memory architectures. The book Lesen Sie mehr

    € 25,73

  • Mastering Regular Expressions

    Understand Your Data and Be More Productive

    Regular expressions are an extremely powerful tool for manipulating text and data. They are now standard features in a wide range of languages and popular tools, including Perl, Python, Ruby, Java, VB.NET and C# (and any language using the .NET Framework), PHP, and MySQL.If you don't use regular expressions yet, you will discover in this book a whole new world of mastery over your data. If you Lesen Sie mehr

    € 30,57

  • Effective C++: 55 Specific Ways to Improve Your Programs and Designs

    55 Specific Ways to Improve Your Programs and Designs

    von Scott Meyers
    “Every C++ professional needs a copy of Effective C++. It is an absolute must-read for anyone thinking of doing serious C++ development. If you’ve never read Effective C++ and you think you know everything about C++, think again.”— Steve Schirripa, Software Engineer, Google“C++ and the C++ community have grown up in the last fifteen years, and the third edition of Effective C++ reflects this.... Lesen Sie mehr

    € 44,54

  • C++ Template Metaprogramming: Concepts, Tools, and Techniques from Boost and Beyond

    Concepts, Tools, and Techniques from Boost and Beyond

    C++ Template Metaprogramming sheds light on the most powerful idioms of today's C++, at long last delivering practical metaprogramming tools and techniques into the hands of the everyday programmer.A metaprogram is a program that generates or manipulates program code. Ever since generic programming was introduced to C++, programmers have discovered myriad "template tricks" for manipulating Lesen Sie mehr

    € 48,50

  • Unity Android Game Development by Example Beginner's Guide

    von Thomas Finnegan
    Unity Android Game Development by Example Beginner's Guide consists of different game application examples. No prior experience with programming, Android, or Unity is required. You will learn everything from scratch and will have an organized flow of information specifically designed for complete beginners to Unity.Great for developers new to Unity, Android, or both, this book will walk you Lesen Sie mehr

    € 23,86

  • C++ Pocket Reference

    C++ Syntax and Fundamentals

    von Kyle Loudon
    C++ is a complex language with many subtle facets. This is especially true when it comes to object-oriented and template programming. The C++ Pocket Reference is a memory aid for C++ programmers, enabling them to quickly look up usage and syntax for unfamiliar and infrequently used aspects of the language. The book's small size makes it easy to carry about, ensuring that it will always be at-hand Lesen Sie mehr

    € 6,70

  • Effective STL

    50 Specific Ways to Improve Your Use of the Standard Template Library

    von Scott Meyers
    Serien series Addison-Wesley Professional Computing Series
    “This is Effective C++ volume three – it’s really that good.”– Herb Sutter, independent consultant and secretary of the ISO/ANSI C++ standards committee“There are very few books which all C++ programmers must have. Add Effective STL to that list.”– Thomas Becker, Senior Software Engineer, Zephyr Associates, Inc., and columnist, C/C++ Users JournalC++’s Standard Template L... Lesen Sie mehr

    € 44,54

  • C++: Learn C++ Fast!

    A BEGINNER’S GUIDE

    von Tech Guru
    Learning C ++ can be a tough and time consuming process but if you are insistent in getting involved in this process, you will find it very engaging and fun. People familiar with other programming languages like Java, Python or Matlab find it comparatively easier to learn C ++. What distinguishes this programming language from the others is that it is one of the first few object oriented languages Lesen Sie mehr

    € 2,94

  • C++ Fundamentals

    Hit the ground running with C++, the language that supports tech giants globally

    Write high-level abstractions while retaining full control of the hardware, performances, and maintainability.Key FeaturesTransform your ideas into modern C++ code, with both C++11 and C++17Explore best practices for creating high-performance solutionsUnderstand C++ basics and work with concrete real-world examplesBook DescriptionC++ Fundamentals begins by introducing you to the C++ compilation Lesen Sie mehr

    € 20,78

  • Nim in Action

    von Dominik Picheta
    SummaryNim is a multi-paradigm language that offers powerful customization options with the ability to compile to everything from C to JavaScript. In Nim in Action you'll learn how Nim compares to other languages in style and performance, master its structure and syntax, and discover unique features.About the TechnologyNim is a multi-paradigm programming language that offers powerful Lesen Sie mehr

    € 50,83

  • C++程序设计教程

    von 黑马程序员
    本书是C++程序设计的入门书籍,适合初学者使用。全书共11章,第1章主要介绍C++对C语言的扩充;第2~5章主要介绍C++的核心知识,包括类与对象、运算符重载、继承与派生、多态与虚函数;第6~7章主要介绍模板与STL;第8~9章主要介绍C++的I/O流和异常;第10章主要介绍C++11新特性;第11章带领读者开发一个综合项目——酒店管理系统,让读者将前面所学知识融会贯通,并了解实际项目的开发流程。 Lesen Sie mehr

    € 12,45

  • Android NDK Game Development Cookbook

    A systematic guide consisting of over 70 recipes which focus on helping you build portable mobile games and aims to enhance your game development skills with clear instructions.If you are a C++ developer who wants to jump into the world of Android game development and who wants to use the power of existing C++ libraries in your existing Android Java applications, then this book is for you. You Lesen Sie mehr

    € 26,39

  • C++11

    Praxiswissen zum neuen Standard

    von Peter Pohmann
    Setzen Sie C++ 11 schon in Ihrer täglichen Arbeit ein? Warum eigentlich nicht? Der neue Standard enthält viele Erweiterungen, die Ihnen das Programmiererleben leichter und Ihre Anwendungen besser machen. Vom Schlüsselwort für undefinierte Zeiger über Lambda-Ausdrücke bis zur Unterstützung paralleler Programmierung. Eine ganze Menge davon ist auch schon in Visual Studio, gcc und anderen Compilern Lesen Sie mehr

    € 19,99

  • Crushing The Technical Interview: Data Structures And Algorithms (C++ Edition)

    von Keith Henning
    Learn the process of interviewing for a software development role, how to prepare, and all the information you will need to make it through the data structures and algorithms interview.This book covers what to expect in each stage of the interview process, how to describe the complexity of an algorithm using Big-O notation, the basic software theories you will need to succeed, and how to answer Lesen Sie mehr

    € 35,49

  • Hands-On Dependency Injection in Go

    Develop clean Go code that is easier to read, maintain, and test

    von Corey Scott
    Explore various dependency injection methods in Go such as monkey patching, constructor injection, and method injectionKey FeaturesLearn to evaluate Code UX and make it betterExplore SOLID principles and understand how they relate to dependency injectionUse Google's wire framework to simplify dependence managementBook DescriptionHands-On Dependency Injection in Go takes you on a journey, teaching Lesen Sie mehr

    € 27,71

  • Projects With dsPIC30F2010 And dsPIC30F4013

    In this book, we will find exercises related to the theory, the basic fundamentals and more complex concepts to work with 16-bit microcontrollers: dsPIC30F2010 and dsPIC30F4013. If we want to carry out large projects, this is a good opportunity to know and learn to use these microcontrollers that, among other things, are used for the processing of digital signals. If you have many doubts related Lesen Sie mehr

    € 11,43

  • C++ Programming in easy steps, 5th Edition

    von Mike McGrath
    Serien series In Easy Steps
    C++ Programming in easy steps, 5th Edition shows you how to program in the powerful C++ language. Now, in its fifth edition, this guide gives complete examples that illustrate each aspect with colourized source code.C++ Programming in easy steps, 5th Edition begins by explaining how to install a free C++ compiler so you can quickly begin to create your own executable programs by copying the book’s Lesen Sie mehr

    € 12,66

  • The Minimum You Need to Know About Qt and Databases

    von Roland Hughes
    This book shows the nitty-gritty of developing with Qt using PostgreSQL, Firebird, and SQLite databases. It also shows the developer how to create BOTH console and GUI Qt applications. Readers are shown how to do development with Qt Designer, Qt Creator, Qdevelop, Monkey Studio, and Eclipse under KUbuntu. Like most of the titles in this series this book attempts to teach by repeatedly Lesen Sie mehr

    € 21,77

  • Learn LLVM 12

    A beginner's guide to learning LLVM compiler tools and core libraries with C++

    von Kai Nacke
    Learn how to build and use all parts of real-world compilers, including the frontend, optimization pipeline, and a new backend by leveraging the power of LLVM core librariesKey FeaturesGet to grips with effectively using LLVM libraries step-by-stepUnderstand LLVM compiler high-level design and apply the same principles to your own compilerUse compiler-based tools to improve the quality of code in Lesen Sie mehr

    € 34,64

  • C++ Programming

    A Guide to Learn the Fundamentals of a Multi-Paradigm to Manage Data

    von MEGANE NOEL
    Serien series computer science
    Why Should You Learn C++ at the Very Least?Even if you intend to use higher-level languages as your primary means of communication?C++ is the foundation of today's AI industry. Although AI scientists and data analysts may prefer simple language bindings such as Python, any serious project must have C++ at its core. Furthermore, many companies in the autonomous driving space will continue to use it Lesen Sie mehr

    € 6,60

  • Game Development Patterns with Godot 4

    Create resilient game systems using industry-standard solutions in Godot

    von Henrique Campos
    Streamline game development with proven design patterns and create scalable, reliable architectures effortlesslyKey FeaturesSave time and avoid pitfalls in game development with proven design patternsLeverage the tools in the Godot editor to benefit from native implementations of design patterns such as the observer and singletonLearn SOLID principles and refactoring techniques to build scalable, Lesen Sie mehr

    € 29,69