Mostrando 6,161 - 6,180 Resultados de 13,910 Para Buscar '"The Class"', tiempo de consulta: 0.12s Limitar resultados
  1. 6161
    Publicado 2009
    Tabla de Contenidos: “…Contiene: Clean code -- Meaningful names -- Functions -- Comments -- Formatting -- Objects and data structures -- Error handling -- Boundaries -- Unit tests -- Classes -- Systems -- Emergence -- Concurrency -- Successive refinement -- Junit internals -- Refactoring serialdate -- Smells and heuristics…”
    Libro
  2. 6162
    Publicado 2003
    Tabla de Contenidos: “…Generalized quantifiers and scope -- v. 3. Noun phrase classes -- v. 4. The semantics of predicates and inflection -- v. 5. …”
    Libro
  3. 6163
    Publicado 2019
    Tabla de Contenidos: “…Object-oriented Kotlin. Objects and classes -- Class hierarchies and inheritance -- Extension through delegation -- Part 3. …”
    Libro electrónico
  4. 6164
    Publicado 2019
    Tabla de Contenidos: “…Chapter 1: Current Status of Python -- Chapter 2: Modern Python Development Environments -- Chapter 3: Modern Syntax Elements - Below the Class Level -- Chapter 4: Modern Syntax Elements - Above the Class Level -- Chapter 5: Elements of Metaprogramming -- Chapter 6: Choosing Good Names -- Chapter 7: Writing a Package -- Chapter 8: Deploying the Code -- Chapter 9: Python Extensions in Other Languages -- Chapter 10: Managing Code -- Chapter 11: Documenting Your Project -- Chapter 12: Test-Driven Development -- Chapter 13: Optimization - Principles and Profiling Techniques -- Chapter 15: Concurrency -- Chapter 16: Event-Driven and Signal Programming -- Chapter 17: Useful Design Patterns…”
    Libro electrónico
  5. 6165
    Publicado 2011
    Tabla de Contenidos: “…Introducing the .NET platform -- Introducing the C# programming language -- Getting started with .NET development using C# -- C# - The language -- Language essentials -- Expressions and operators -- Primer on types and objects -- Simple control flow -- Basics of exceptions and resource management -- Introducing types -- Methods -- Fields, properties, and indexes -- Constructors and finalizers -- Operator overloading and conversations -- Object-oriented programming -- Generic types and methods -- Collections types -- Delegates -- Events -- Language integrated query essentials -- Language integrated query internals -- Reflection -- Dynamic programming -- Exceptions -- Namespaces -- Assembles and application domains -- Working with base class libraries -- Base class library essentials -- Diagnostics and instrumentation -- Working with I/O -- Threading and synchronization -- Task parallellism and date parallelism…”
    Libro electrónico
  6. 6166
    por Black, David A.
    Publicado 2014
    Tabla de Contenidos: “…Organizing objects with classes -- 4. Modules and program organization -- 5. …”
    Libro electrónico
  7. 6167
    por Palmer, Christopher N., 1947-
    Publicado 2019
    Tabla de Contenidos: “…Introduction : professor as learner -- Realize the importance of professors -- Manifest good values -- Create an effective syllabus -- Establish a philosophy of grading -- Harness the power of caring -- Convey your passion -- Promote active learning -- Support and encourage quiet students -- Make large, lecture-based classes feel smaller -- Add variety to your class -- Finish the semester strong -- Be responsive to students -- Other professors and students give their views on how to excel at college teaching -- Appendix I. …”
    Libro
  8. 6168
    Publicado 2019
    Tabla de Contenidos: “…Living beyond Our Psychological Means ; Nation Building ; National Creativity ; This Place We Call Home ; La Vie Quotidian ; Subjects into Citizens ; A Short History of the Cross-Class Coalition -- Part III: A Divided House. The Breakdown of the Cross-Class Coalition ; One Nation, Divided, under Stress ; The Elephant in the Room ; The Birth of a Nationalist ; The Nationalism of the Vulnerable ; The Nationalism of the Affluent -- Part IV: A New Social Contract. …”
    Libro
  9. 6169
    Publicado 2022
    Tabla de Contenidos: “…Summary -- Part 2. Under the hood -- 4 Class files and bytecode -- 4.1 Class loading and class objects -- 4.1.1 Loading and linking -- 4.1.2 Class objects -- 4.2 Class loaders -- 4.2.1 Custom class loading -- 4.2.2 Modules and class loading -- 4.3 Examining class files -- 4.3.1 Introducing javap -- 4.3.2 Internal form for method signatures -- 4.3.3 The constant pool -- 4.4 Bytecode -- 4.4.1 Disassembling a class -- 4.4.2 The runtime environment -- 4.4.3 Introduction to opcodes -- 4.4.4 Load and store opcodes -- 4.4.5 Arithmetic opcodes -- 4.4.6 Execution flow control opcodes -- 4.4.7 Invocation opcodes -- 4.4.8 Platform operation opcodes -- 4.4.9 Shortcut opcode forms -- 4.5 Reflection -- 4.5.1 Introducing reflection -- 4.5.2 Combining class loading and reflection -- 4.5.3 Problems with reflection -- Summary -- 5 Java concurrency fundamentals -- 5.1 Concurrency theory primer -- 5.1.1 But I already know about Thread -- 5.1.2 Hardware -- 5.1.3 Amdahl's law -- 5.1.4 Explaining Java's threading model -- 5.1.5 Lessons learned -- 5.2 Design concepts -- 5.2.1 Safety and concurrent type safety -- 5.2.2 Liveness -- 5.2.3 Performance -- 5.2.4 Reusability -- 5.2.5 How and why do the forces conflict? …”
    Libro electrónico
  10. 6170
    Publicado 2018
    Tabla de Contenidos: “…2.5.2 Declaring and Creating a Scanner to Obtain User Input from the Keyboard 98 -- 2.5.3 Prompting the User for Input 99 -- 2.5.4 Declaring a Variable to Store an Integer and Obtaining anInteger from the Keyboard 99 -- 2.5.5 Obtaining a Second Integer 100 -- 2.5.6 Using Variables in a Calculation 100 -- 2.5.7 Displaying the Calculation Result 100 -- 2.5.8 Java API Documentation 101 -- 2.5.9 Declaring and Initializing Variables in Separate Statements 101 -- 2.6 Memory Concepts 101 -- 2.7 Arithmetic 102 -- 2.8 Decision Making: Equality and Relational Operators 106 -- 2.9 Wrap-Up 109 -- 3 Introduction to Classes, Objects, Methods and Strings 120 -- 3.1 Introduction 121 -- 3.2 Instance Variables, set Methods and get Methods 122 -- 3.2.1 Account Class with an Instance Variable, and set and get Methods 122 -- 3.2.2 AccountTest Class That Creates and Uses an Object of Class Account 125 -- 3.2.3 Compiling and Executing an App with Multiple Classes 128 -- 3.2.4 Account UML Class Diagram 128 -- 3.2.5 Additional Notes on Class AccountTest 130 -- 3.2.6 Software Engineering with private Instance Variables and public set and get Methods 130 -- 3.3 Account Class: Initializing Objects with Constructors 131 -- 3.3.1 Declaring an Account Constructor for Custom Object Initialization 132 -- 3.3.2 Class AccountTest: Initializing Account Objects When They're Created 133 -- 3.4 Account Class with a Balance -- Floating-Point Numbers 134 -- 3.4.1 Account Class with a balance Instance Variable of Type double 135 -- 3.4.2 AccountTest Class to Use Class Account 137 -- 3.5 Primitive Types vs. …”
    Libro electrónico
  11. 6171
    por Lukács, Georg
    Publicado 2009
    “…Georg Lukács' 'History and Class Consciousness' is a seminal work in Marxist philosophy, exploring the dialectical relationship between history and class consciousness. …”
    Libro electrónico
  12. 6172
    Publicado 2016
    Tabla de Contenidos: “…Enough Is Enough: Limits of the Market Ideology The Consumer Market Disciplines Surplus Predictability and Control Speed and Convenience The Blanket of Technology The Sale of Convenience Convenience Displaces Capacity Digital Solutions The Meaning of Money Money and the Machine Wishing for Safety, Believing in Growth Competition and Class Class by Design Class Warfare and the Distribution of Wealth The Myth of Individualism Chapter 4. …”
    Libro electrónico
  13. 6173
    Publicado 2011
    “…'3D Automotive Modeling' is an insider's guide to modeling and designing 3D cars, coming straight to you from from the top automotive designers of the day, and world-class game developers…”
    Libro electrónico
  14. 6174
    por Giménez, Xavier
    Publicado 2014
    Tabla de Contenidos: “…5 quaderns (L'àlbum de la classe ; Mascotes ; Amb els cinc sentits ; Xivarri a la granja ; El meu hortet) acompanyats de 5 llibrets amb els mateixos noms ; Guia didàctica…”
    Libro
  15. 6175
    por Mateos Inchaurrondo, Ainoa
    Publicado 2013
    Tabla de Contenidos: “…Conté al cd-rom: exercicis per fer a classe amb l'alumnat, històries animades, un test inicial i un test final…”
    Libro
  16. 6176
    Publicado 2020
    Tabla de Contenidos: “…Verbal morphology -- 5. Other word classes -- 6. Phrase-level syntax -- 7. Clause-level syntax -- 8. …”
    Libro electrónico
  17. 6177
    por Denny, Harry C.
    Publicado 2010
    Tabla de Contenidos: “…Identity politics, face, and the pedagogy of one-to-one mentoring of writing -- Facing race & ethnicity in the writing center -- Facing class in the writing center -- Facing sex & gender in the writing center -- Facing nationality in the writing center -- Facing the center redux…”
    Libro electrónico
  18. 6178
    Publicado 2015
    Tabla de Contenidos: “…Getting started -- Functions, scope, and context -- Collections, iteration, and destructuring -- Classes, prototypes, and inheritance -- Web applications with jQuery and Backbone.js -- Web servers with node and express -- Testing with Intern -- Web servers with node and express -- Testing with intern…”
    Libro electrónico
  19. 6179
    por Sciore, Edward. author
    Publicado 2019
    Tabla de Contenidos: “…Modular Software Design -- 2. Polymorphism -- 3. Class Hierarchies -- 4. Strategies -- 5. Encapsulating Constructor Usage -- 6. …”
    Libro electrónico
  20. 6180
    Tabla de Contenidos: “…Advanced Basics -- 3. Functions -- 4. Classes -- 5. Common Protocols -- 6. Object Management -- 7. …”
    Libro electrónico