Beginning Lua Programming (Programmer to Programmer)
6 Angebote vergleichen

Preise20132014201520172019
Schnitt 23,98 20,66 29,04 10,01 37,29
Nachfrage
Bester Preis: 6,16 (vom 13.07.2014)
1
9780470069172 - Kurt Jung, Aaron Brown: Beginning Lua Programming
Kurt Jung, Aaron Brown

Beginning Lua Programming (2007)

Lieferung erfolgt aus/von: Vereinigte Staaten von Amerika EN PB US FE

ISBN: 9780470069172 bzw. 0470069171, in Englisch, 672 Seiten, Wrox, Taschenbuch, gebraucht, Erstausgabe.

6,16 ($ 8,38)¹ + Versand: 2,93 ($ 3,99)¹ = 9,09 ($ 12,37)¹
unverbindlich
Lieferung aus: Vereinigte Staaten von Amerika, Usually ships in 1-2 business days.
Von Händler/Antiquariat, santa clara books.
This book is for students and professionals who are intrigued by the prospect of learning and using a powerful language that provides a rich infrastructure for creating programs. No programming knowledge is necessary to benefit from this book except for the section on Lua bindings, which requires some familiarity with the C programming language. A certain comfort level with command-line operations, text editing, and directory structures is assumed.You need surprisingly little in the way of computer resources to learn and use Lua. This book focuses on Windows and Unix-like (including Linux) systems, but any operating system that supports a command shell should be suitable. You'll need a text editor to prepare and save Lua scripts.If you choose to extend Lua with libraries written in a programming language like C, you'll need a suitable software development kit. Many of these kits are freely available on the Internet but, unlike Lua, they can consume prodigious amounts of disk space and memory., Paperback, Ausgabe: 1, Label: Wrox, Wrox, Produktgruppe: Book, Publiziert: 2007-02-12, Freigegeben: 2007-01-26, Studio: Wrox, Verkaufsrang: 686313.
2
9780470069172 - Kurt Jung: Beginning Lua Programming
Kurt Jung

Beginning Lua Programming

Lieferung erfolgt aus/von: Deutschland EN PB NW

ISBN: 9780470069172 bzw. 0470069171, in Englisch, WROX, Taschenbuch, neu.

Lieferung aus: Deutschland, Versandkostenfrei.
Buchhandlung Kühn GmbH, [4368407].
Neuware - Lua offers a wide range of features that you can utilize to support and enhance your applications. With this book as your guide, you'll gain a thorough understanding of all aspects of programming with this powerful language. It will walk you through the basics, covering everything from installing Lua on your system to developing games and web sites. Experts Jung and Brown first present the fundamentals of programming and explain standard Lua functions. They then show you how to take advantage of all of the free Lua community resources that are available. Complete code samples are integrated throughout the chapters to clearly demonstrate how to apply the information. Diagrams are also included to highlight important Lua features such as stacks, hash tables, garbage collection, and function closures. All of this will help you to quickly write your own effective programs. What you will learn from this book * Ways to extend Lua's operators with metamethods * Methods on how to use tables, strings, and modules * How to handle events naturally with coroutines * Techniques for managing information with databases * Tips for handling and avoiding programming errors * Ways to create your own innovative games * How to enhance application development using packages contributed by the Lua community * Steps for presenting dynamic information on your web site Who this book is for This book is for beginning programmers, game developers, and web site developers who are interested in a simple yet powerful introduction to programming. Wrox Beginning guides are crafted to make learning programming languages and technologies easier than you think, providing a structured, tutorial format that will guide you through all the techniques involved. Taschenbuch.
3
0470069171 - Kurt Jung; Aaron Brown: Beginning Lua Programming (Programmer to Programmer)
Kurt Jung; Aaron Brown

Beginning Lua Programming (Programmer to Programmer)

Lieferung erfolgt aus/von: Vereinigte Staaten von Amerika EN US

ISBN: 0470069171 bzw. 9780470069172, in Englisch, Wiley & Sons, Incorporated, John, gebraucht.

9,98 ($ 11,81)¹ + Versand: 4,22 ($ 4,99)¹ = 14,20 ($ 16,80)¹
unverbindlich
Lieferung aus: Vereinigte Staaten von Amerika, Lagernd.
computer science,computers and technology,education and reference,introductory and beginning,languages and tools,programming,programming languages,software,textbooks, Beginning Lua Programming, This book is for students and professionals who are intrigued by the prospect of learning and using a powerful language that provides a rich infrastructure for creating programs. No programming knowledge is necessary to benefit from this book except for the section on Lua bindings, which requires some familiarity with the C programming language. A certain comfort level with command-line operations, text editing, and directory structures is assumed. You need surprisingly little in the way of computer resources to learn and use Lua. This book focuses on Windows and Unix-like (including Linux) systems, but any operating system that supports a command shell should be suitable. You'll need a text editor to prepare and save Lua scripts. If you choose to extend Lua with libraries written in a programming language like C, you'll need a suitable software development kit. Many of these kits are freely available on the Internet but, unlike Lua, they can consume prodigious amounts of disk space and memory.
4
9780470069172 - Jung, Kurt; Brown, Aaron: Beginning Lua Programming
Jung, Kurt; Brown, Aaron

Beginning Lua Programming (2007)

Lieferung erfolgt aus/von: Vereinigte Staaten von Amerika EN PB NW

ISBN: 9780470069172 bzw. 0470069171, in Englisch, Wrox, Taschenbuch, neu.

Lieferung aus: Vereinigte Staaten von Amerika, Versandkostenfrei.
Von Händler/Antiquariat, Book Deals [60506629], Lewiston, NY, U.S.A.
Brand New, Unread Copy in Perfect Condition. A+ Customer Service! Summary: Acknowledgments. Introduction. Chapter 1: Getting Situated. Choosing How to Install Lua. Finding Your System's Shell. Dealing with Tarballs and Zip Files. Compiling Lua. Binary Packages. Additional Tools. Chapter 2: First Steps. Numbers and Arithmetic Operations: Basic Interpreter Usage. Interpreter Know-How. Numerical Gotchas. Variables and Assignment. Strings. Relational Operators and Boolean Values. The nil Value. Boolean Operators. The Concatenation, Length, and Modulo Operators. Automatic Conversion of Operands. Precedence and Associativity. Variables and Values. Comments. Expressions and Statements. Compound Statements. Chapter 3: Extending Lua with Functions. Return Values. Chunks as Functions. Variable Scope. Understanding Side Effects. Functions Calling Functions. Functions as Values. Whitespace, Semicolons, and Function Calls. Upvalues and Closures. Chapter 4: Working with Tables. Tables Introduced. A Shorter Way to Write Some Keys. Altering a Table's Contents. Tables as Arrays. Array Length. Looping through Tables. Tables of Functions. Functions with Variable Numbers of Arguments. Keyword Arguments. Different but the Same. Building Other Data Structures from Tables. Custom-Made Loops. Global Variable Environments. Chapter 5: Using Strings. Basic String Conversion Functions String Length. Converting Between Characters and Character Codes. Formatting Strings and Numbers with string.format. Input/Output. Pattern-Matching. Chapter 6: Handling and Avoiding Errors. Kinds of Errors. Handling Errors. Locating Errors. Chapter 7: Using Modules. Interfaces and Implementations. The require Function. Where to Put Modules. Preserving a Module's Interface. Module Bookkeeping. Bytecode. Namespaces. The module Function. C Modules. Chapter 8: Extending Lua's Behavior with Metamethods. Using Concatenation and Arithmetical Operators on Tables. Relational Metamethods. Indexing and Call Metamethods. Non-Tables with Metamethods. Non-Syntactical Metamethods. Metamethod Applicability. Chapter 9: Handling Events Naturally with Coroutines. Coroutines and Program Control. Managing Concurrent Tasks. Retaining State. Handling Events Simply. Chapter 10: Looking Under the Hood. Bytecode and luac. Garbage Collection. The Implementation of Tables and Strings. The Debug Library. Chapter 11: Exploring Lua's Libraries. Core Library. Coroutine Library. Package Library. String Library. Table Library. Math Library. Input/Output Library. Operating System Library. Debugging Library. Chapter 12: Using Community Libraries. Library Overview. How Lua Interacts with Libraries. The pack Binary Structuring Library. The cURL File Transfer Library. The gd Graphics Library. The SQLite Database Library. Chapter 13: Interfacing Lua with Other Languages. How C Programs Use Lua. Communicating Between Lua and C. Calling Lua from C. Working with Userdata. Indexing Values in C. Retaining Values in C. Layering Your Extension Library. Chapter 14: Managing Information with Databases. Some Basic Relational Database Concepts. SQL, LuaSQL, and MySQL. Chapter 15: P.
5
9780470069172 - Beginning Lua Programming (Programmer to Programmer)

Beginning Lua Programming (Programmer to Programmer)

Lieferung erfolgt aus/von: Vereinigte Staaten von Amerika EN US

ISBN: 9780470069172 bzw. 0470069171, in Englisch, Wiley, Vereinigte Staaten von Amerika, gebraucht.

26,32 + Versand: 2,70 = 29,02
unverbindlich
Von Händler/Antiquariat, BookSleuth [58350165], Danville, CA, U.S.A.
Fast Shipping ! Used books may not include access codes, CDs or other supplements.
6
9780470069172 - Jung, Kurt, Brown, Aaron: Beginning Lua Programming (Programmer to Programmer)
Jung, Kurt, Brown, Aaron

Beginning Lua Programming (Programmer to Programmer) (2007)

Lieferung erfolgt aus/von: Deutschland EN PB US FE

ISBN: 9780470069172 bzw. 0470069171, in Englisch, 672 Seiten, John Wiley & Sons, Taschenbuch, gebraucht, Erstausgabe.

24,57 + Versand: 3,00 = 27,57
unverbindlich

Neu ab: 50,00 € (3 Angebote)
Gebraucht ab: 24,57 € (8 Angebote)
Zu den weiteren 11 Angeboten bei Amazon.de (Int.)

Lieferung aus: Deutschland, Tatsächliche Versandkosten können abweichen.
Die Beschreibung dieses Angebotes ist von geringer Qualität oder in einer Fremdsprache. Trotzdem anzeigen
Lade…