Theories of Programming Languages

Theories of Programming Languages
Author: John C. Reynolds
Publsiher: Cambridge University Press
Total Pages: 516
Release: 2009-04-02
Genre: Computers
ISBN: 0521106974

Download Theories of Programming Languages Book in PDF, Epub and Kindle

This textbook is a broad but rigorous survey of the theoretical basis for the design, definition, and implementation of programming languages, and of systems for specifying and proving program behavior. It encompasses imperative and functional programming, as well as the ways of integrating these aspects into more general languages. Basic concepts and their properties are described with mathematical rigor, but the mathematical development is balanced by numerous examples of applications, particularly of program specification and proof, concurrent programming, functional programming (including the use of continuations and lazy evaluation), and type systems (including subtyping, polymorphism, and modularization). Assuming only knowledge of elementary programming, this text is perfect for advanced undergraduate and beginning graduate courses in programming language theory, and will also appeal to researchers and professionals in designing or implementing computer languages.

Introduction to the Theory of Programming Languages

Introduction to the Theory of Programming Languages
Author: Gilles Dowek,Jean-Jacques Lévy
Publsiher: Springer Science & Business Media
Total Pages: 102
Release: 2010-12-09
Genre: Computers
ISBN: 9780857290762

Download Introduction to the Theory of Programming Languages Book in PDF, Epub and Kindle

The design and implementation of programming languages, from Fortran and Cobol to Caml and Java, has been one of the key developments in the management of ever more complex computerized systems. Introduction to the Theory of Programming Languages gives the reader the means to discover the tools to think, design, and implement these languages. It proposes a unified vision of the different formalisms that permit definition of a programming language: small steps operational semantics, big steps operational semantics, and denotational semantics, emphasising that all seek to define a relation between three objects: a program, an input value, and an output value. These formalisms are illustrated by presenting the semantics of some typical features of programming languages: functions, recursivity, assignments, records, objects, ... showing that the study of programming languages does not consist of studying languages one after another, but is organized around the features that are present in these various languages. The study of these features leads to the development of evaluators, interpreters and compilers, and also type inference algorithms, for small languages.

Concepts in Programming Languages

Concepts in Programming Languages
Author: John C. Mitchell
Publsiher: Cambridge University Press
Total Pages: 546
Release: 2003
Genre: Computers
ISBN: 0521780985

Download Concepts in Programming Languages Book in PDF, Epub and Kindle

A comprehensive undergraduate textbook covering both theory and practical design issues, with an emphasis on object-oriented languages.

Theories of Programming Languages

Theories of Programming Languages
Author: John C. Reynolds
Publsiher: Cambridge University Press
Total Pages: 514
Release: 1998-10-13
Genre: Computers
ISBN: 9781139936255

Download Theories of Programming Languages Book in PDF, Epub and Kindle

First published in 1998, this textbook is a broad but rigourous survey of the theoretical basis for the design, definition and implementation of programming languages and of systems for specifying and proving programme behaviour. Both imperative and functional programming are covered, as well as the ways of integrating these aspects into more general languages. Recognising a unity of technique beneath the diversity of research in programming languages, the author presents an integrated treatment of the basic principles of the subject. He identifies the relatively small number of concepts, such as compositional semantics, binding structure, domains, transition systems and inference rules, that serve as the foundation of the field. Assuming only knowledge of elementary programming and mathematics, this text is perfect for advanced undergraduate and beginning graduate courses in programming language theory and also will appeal to researchers and professionals in designing or implementing computer languages.

Principles of Compiler Design

Principles of Compiler Design
Author: Aho Alfred V,Jeffrey D. Ullman
Publsiher: Unknown
Total Pages: 612
Release: 1998
Genre: Compilers (Computer programs)
ISBN: 8185015619

Download Principles of Compiler Design Book in PDF, Epub and Kindle

Category Theory for Programmers New Edition Hardcover

Category Theory for Programmers  New Edition  Hardcover
Author: Bartosz Milewski
Publsiher: Unknown
Total Pages: 135
Release: 2019-08-24
Genre: Electronic Book
ISBN: 0464243874

Download Category Theory for Programmers New Edition Hardcover Book in PDF, Epub and Kindle

Category Theory is one of the most abstract branches of mathematics. It is usually taught to graduate students after they have mastered several other branches of mathematics, like algebra, topology, and group theory. It might, therefore, come as a shock that the basic concepts of category theory can be explained in relatively simple terms to anybody with some experience in programming.That's because, just like programming, category theory is about structure. Mathematicians discover structure in mathematical theories, programmers discover structure in computer programs. Well-structured programs are easier to understand and maintain and are less likely to contain bugs. Category theory provides the language to talk about structure and learning it will make you a better programmer.

A Theory of Programming Language Semantics

A Theory of Programming Language Semantics
Author: Robert Milne,Christopher Strachey
Publsiher: Chapman & Hall
Total Pages: 380
Release: 1976
Genre: Computers
ISBN: UOM:39015000454374

Download A Theory of Programming Language Semantics Book in PDF, Epub and Kindle

This book explores how to formalize semantics in various programming languages.

A Practical Theory of Programming

A Practical Theory of Programming
Author: Eric C.R. Hehner
Publsiher: Springer Science & Business Media
Total Pages: 257
Release: 2012-09-08
Genre: Computers
ISBN: 9781441985965

Download A Practical Theory of Programming Book in PDF, Epub and Kindle

There are several theories of programming. The first usable theory, often called "Hoare's Logic", is still probably the most widely known. In it, a specification is a pair of predicates: a precondition and postcondition (these and all technical terms will be defined in due course). Another popular and closely related theory by Dijkstra uses the weakest precondition predicate transformer, which is a function from programs and postconditions to preconditions. lones's Vienna Development Method has been used to advantage in some industries; in it, a specification is a pair of predicates (as in Hoare's Logic), but the second predicate is a relation. Temporal Logic is yet another formalism that introduces some special operators and quantifiers to describe some aspects of computation. The theory in this book is simpler than any of those just mentioned. In it, a specification is just a boolean expression. Refinement is just ordinary implication. This theory is also more general than those just mentioned, applying to both terminating and nonterminating computation, to both sequential and parallel computation, to both stand-alone and interactive computation. And it includes time bounds, both for algorithm classification and for tightly constrained real-time applications.