`
TracyKelvin
  • 浏览: 22631 次
  • 性别: Icon_minigender_1
  • 来自: 广州
最近访客 更多访客>>
社区版块
存档分类
最新评论

Learning the Java Language(1.1)

    博客分类:
  • Java
阅读更多

What Is an Object?

 

Objects are key to understanding object-oriented technology. Look around right now and you'll find many examples of real-world objects: your dog, your desk, your television set, your bicycle.

Real-world objects share two characteristics: They all have state and behavior. Dogs have state (name, color, breed, hungry) and behavior (barking, fetching, wagging tail). Bicycles also have state (current gear, current pedal cadence, current speed) and behavior (changing gear, changing pedal cadence, applying brakes). Identifying the state and behavior for real-world objects is a great way to begin thinking in terms of object-oriented programming.

Take a minute right now to observe the real-world objects that are in your immediate area. For each object that you see, ask yourself two questions: "What possible states can this object be in?" and "What possible behavior can this object perform?". Make sure to write down your observations. As you do, you'll notice that real-world objects vary in complexity; your desktop lamp may have only two possible states (on and off) and two possible behaviors (turn on, turn off), but your desktop radio might have additional states (on, off, current volume, current station) and behavior (turn on, turn off, increase volume, decrease volume, seek, scan, and tune). You may also notice that some objects, in turn, will also contain other objects. These real-world observations all translate into the world of object-oriented programming.

Software objects are conceptually similar to real-world objects: they too consist of state and related behavior. An object stores its state in fields (variables in some programming languages) and exposes its behavior through methods (functions in some programming languages). Methods operate on an object's internal state and serve as the primary mechanism for object-to-object communication. Hiding internal state and requiring all interaction to be performed through an object's methods is known as data encapsulation — a fundamental principle of object-oriented programming.

Consider a bicycle, for example:

By attributing state (current speed, current pedal cadence, and current gear) and providing methods for changing that state, the object remains in control of how the outside world is allowed to use it. For example, if the bicycle only has 6 gears, a method to change gears could reject any value that is less than 1 or greater than 6.

Bundling code into individual software objects provides a number of benefits, including:

  1. Modularity: The source code for an object can be written and maintained independently of the source code for other objects. Once created, an object can be easily passed around inside the system.

     

  2. Information-hiding: By interacting only with an object's methods, the details of its internal implementation remain hidden from the outside world.

     

  3. Code re-use: If an object already exists (perhaps written by another software developer), you can use that object in your program. This allows specialists to implement/test/debug complex, task-specific objects, which you can then trust to run in your own code.

     

  4. Pluggability and debugging ease: If a particular object turns out to be problematic, you can simply remove it from your application and plug in a different object as its replacement. This is analogous to fixing mechanical problems in the real world. If a bolt breaks, you replace it, not the entire machine.
分享到:
评论

相关推荐

    PyPI 官网下载 | fast-machine-learning-0.0.1.1.tar.gz

    本篇文章将深入探讨通过PyPI下载的名为`fast-machine-learning-0.0.1.1.tar.gz`的压缩包,这是一个专注于机器学习的Python库。 首先,我们来理解一下PyPI。PyPI允许开发者上传他们的Python项目,以便其他用户可以...

    PyPI 官网下载 | mypy-boto3-machinelearning-1.11.1.1.tar.gz

    《PyPI官网下载:mypy-boto3-machinelearning-1.11.1.1.tar.gz详解》 PyPI(Python Package Index),是Python社区官方的软件包仓库,提供了丰富的Python库供开发者下载和使用。在PyPI官网上,我们可以找到名为`...

    Machine Learning in Java epub

    Machine Learning in Java 英文epub 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自网络,如有侵权,请联系上传者或csdn删除

    Deep Learning: Practical Neural Networks with Java 完整高清英文azw3版

    This course aims to create a smooth learning path that will teach you how to effectively use deep learning with Java with other de facto components to get the most out of it. Through this ...

    Deep Learning in Natural Language Processing 无水印原版pdf

    Deep Learning in Natural Language Processing 英文无水印原版pdf pdf所有页面使用FoxitReader、PDF-XChangeViewer、SumatraPDF和Firefox测试都可以打开 本资源转载自网络,如有侵权,请联系上传者或csdn删除 ...

    deeplearning4j-nn-1.0.0-M1.1-API文档-中文版.zip

    标签:deeplearning4j、nn、中文文档、jar包、java; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化翻译,文档中的代码和结构保持不变,注释和说明精准翻译,请放心...

    Learning.Java.by.Building.Android.Games

    So, you should first obtain a solid grasp of the Java language and its foundation APIs to improve the chances of succeeding as an Android app developer. This book will show you how to get your ...

    Deep Learning in Natural Language Processing

    In particular, the striking success of deep learning in a wide variety of natural language processing (NLP) applications has served as a benchmark for the advances in one of the most important tasks ...

    The Psychological Course of Java Language Learning.zip

    总的来说,"The Psychological Course of Java Language Learning.zip"可能是一个综合性的资源,旨在帮助学习者理解并克服在学习Java过程中可能出现的心理障碍,提供科学的学习策略,结合实践项目,以及提倡社区参与...

    Machine Learning in Java.PDF+代码

    Machine Learning in Java.PDF文档+代码 If you want to learn how to use Java's machine learning libraries to gain insight from your data, this book is for you. You should be familiar with Java ...

    Learning Java by Building Android Games

    It uses the most popular programming language, Java, as the primary language for building apps of all types. However, this book is unlike other Android books in that it doesn’t assume that you ...

    Learning Modular Java Programming.pdf

    《Learning Modular Java Programming》是一本介绍使用Java和Spring框架进行模块化编程构建应用的图书。模块化编程是一种编程范式,它鼓励将一个大型的应用程序分解成更小、更易管理的部分,即模块。在Java中,模块...

    Deep Learning for Natural Language Processing--2018

    Gain the fundamentals of deep learning and its mathematical prerequisites Discover deep learning frameworks in Python Develop a chatbot Implement a research paper on sentiment classification

Global site tag (gtag.js) - Google Analytics