Boost C++ application development cookbook

Annotation

Saved in:
Bibliographic Details
Main Author: Polukhin, Antony.
Format: eBook
Language: English
Published: Birmingham : Packt Publishing, [2013]
Subjects:
ISBN: 9781849514897
1849514895
9781628704419
1628704411
1849514887
9781849514880
Physical Description: 1 online resource (348 pages)

Cover

Table of contents

LEADER 06909cam a2200481 i 4500
001 kn-ocn861526487
003 OCoLC
005 20240717213016.0
006 m o d
007 cr cn|||||||||
008 111102s2013 enk o 001 0 eng d
040 |a E7B  |b eng  |e rda  |e pn  |c E7B  |d OCLCO  |d S4S  |d N$T  |d KNOVL  |d OCLCF  |d COO  |d KNOVL  |d EBLCP  |d IDEBK  |d YDXCP  |d DEBSZ  |d OCLCQ  |d OCLCO  |d FEM  |d AGLDB  |d MOR  |d PIFAG  |d ZCU  |d MERUC  |d OCLCQ  |d U3W  |d STF  |d VTS  |d NRAMU  |d DEHBZ  |d CRU  |d ICG  |d OCLCQ  |d NLE  |d INT  |d VT2  |d OCLCQ  |d UKMGB  |d G3B  |d TKN  |d OCLCQ  |d DKC  |d AU@  |d OCLCQ  |d M8D  |d UKAHL  |d OCLCQ  |d NLW  |d OCLCQ  |d OCLCO  |d QGK  |d OCLCQ  |d UPM  |d OCLCQ  |d INARC  |d OCLCQ  |d OCLCO  |d OCLCQ 
020 |a 9781849514897  |q (electronic bk.) 
020 |a 1849514895  |q (electronic bk.) 
020 |a 9781628704419  |q (electronic bk.) 
020 |a 1628704411  |q (electronic bk.) 
020 |a 1849514887 
020 |a 9781849514880 
020 |z 9781849514880 
035 |a (OCoLC)861526487  |z (OCoLC)857364882  |z (OCoLC)961601528  |z (OCoLC)962574988  |z (OCoLC)968071659  |z (OCoLC)969009910  |z (OCoLC)1259129480 
100 1 |a Polukhin, Antony. 
245 1 0 |a Boost C++ application development cookbook /  |c Antony Polukhin. 
264 1 |a Birmingham :  |b Packt Publishing,  |c [2013] 
264 4 |c ©2013 
300 |a 1 online resource (348 pages) 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
500 |a Includes index. 
506 |a Plný text je dostupný pouze z IP adres počítačů Univerzity Tomáše Bati ve Zlíně nebo vzdáleným přístupem pro zaměstnance a studenty 
520 8 |a Annotation  |b Boost libraries are developed by professionals, tested on multiple platforms and processor architectures, and contain reliable solutions for a wide range of tasks. This Cookbook takes you on a journey of simplifying the process of application development and guides you through writing perfect applications fast."Boost C++ Application Development Cookbook" provides you with a number of clear step-by-step recipes that will help you take advantage of the real power of Boost and C++, while giving you a good grounding in using it in any project."Boost C++ Application Development Cookbook" looks at the Boost libraries, and breaks down the mystery and confusion about which library to use in which situation. It will take you through a number of clear, practical recipes that will help you to take advantage of the readily available solutions. Boost C++ Application Development Cookbook starts with teaching the basics of Boost libraries that are now mostly part of C++11 and leave no chance for memory leaks. Managing resources will become a piece of cake. Well see what kind of work can be done at compile time and what Boost containers can do. Do you think multithreading is a burden? Not with Boost. Think writing portable and fast servers is impossible? Youll be surprised! Compilers and operating systems differ too much? Not with Boost. From manipulating images to graphs, directories, timers, files, strings everyone will find an interesting topic. You will learn everything for the development of high quality fast and portable applications. Write a program once and then you can use it on Linux, Windows, MacOS, Android operating systems 
505 0 |a Table of Contents; Boost C++ Application Development Cookbook; Boost C++ Application Development Cookbook; Credits; About the Author; About the Reviewers; www.PacktPub.com; Support files, eBooks, discount offers and more; Why Subscribe?; Free Access for Packt account holders; Preface; What this book covers; What you need for this book; Who this book is for; Conventions; Reader feedback; Customer support; Downloading the example code; Errata; Piracy; Questions; 1. Starting to Write Your Application; Introduction; Getting configuration options; Getting ready; How to do it ... ; How it works ... 
505 8 |a There's more ... See also; Storing any value in a container/variable; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Storing multiple chosen types in a variable/container; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Using a safer way to work with a container that stores multiple chosen types; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Returning a value or flag where there is no value; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Returning an array from a function. 
505 8 |a Getting readyHow to do it ... ; How it works ... ; There's more ... ; See also; Combining multiple values into one; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Reordering the parameters of function; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Binding a value as a function parameter; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Using the C++11 move emulation; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Making a noncopyable class; Getting ready; How to do it ... 
505 8 |a How it works ... See also; Making a noncopyable but movable class; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; 2. Converting Data; Introduction; Converting strings to numbers; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Converting numbers to strings; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Converting numbers to numbers; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Converting user-defined types to/from strings; How to do it ... ; How it works ... ; There's more ... 
505 8 |a See alsoCasting polymorphic objects; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Parsing simple input; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Parsing input; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; 3. Managing Resources; Introduction; Managing pointers to classes that do not leave scope; Getting ready; How to do it ... ; How it works ... ; There's more ... ; See also; Reference counting of pointers to classes used across methods; Getting ready; How to do it ... ; How it works ... ; There's more ... 
590 |a Knovel  |b Knovel (All titles) 
650 0 |a C++ (Computer program language) 
650 0 |a Computer programming. 
655 7 |a elektronické knihy  |7 fd186907  |2 czenas 
655 9 |a electronic books  |2 eczenas 
776 0 8 |i Print version:  |a Polukhin, Antony.  |t Boost C++ Application Development Cookbook.  |d Birmingham : Packt Publishing, ©2013  |z 9781849514880 
856 4 0 |u https://proxy.k.utb.cz/login?url=https://app.knovel.com/hotlink/toc/id:kpBCADC002/boost-c-application?kpromoter=marc  |y Full text