- Android Programming for Beginners
- John Horton
- 268字
- 2021-07-23 14:47:06
Java is everywhere
The core Java fundamentals that we are about to learn apply to classes that we inherit from (such as Activity
), as well as classes that we write ourselves (as we will start to do in Chapter 9, Object-Oriented Programming). As it is more logical to learn the basics before we write our own classes, we will be using the extended Activity
class in a whole bunch of mini-projects in this chapter to learn and practice Java, and we will use Log
and Toast
again to observe the results of our coding. In addition, we will use more methods that we will write ourselves (called from buttons), as well as the overridden methods of the Activity
class to trigger the execution of our code.
However, when we move onto Chapter 9, Object-Oriented Programming and start to write our own classes, as well as understand more about how classes written by others work, everything we have learned here will apply then too. In fact, all the Java that you learn in this chapter will work in the following Java environments if you strip it out of the Activity
class and paste it into these environments:
- Any of the major desktop operating systems
- Many modern televisions
- Sat nav
- Smart fridges and more...
Tip
Calling all Java gurus
If you have already done some Java programming and understand the following words: if
, else
, while
, do while
, switch
, and for
, you can probably skip to the next chapter. Or you might like to skim over this information as a refresher.
Let's get on with learning how to code in Java.
- 零基礎學C++程序設計
- PHP程序設計(慕課版)
- 數據庫系統原理及MySQL應用教程
- Magento 1.8 Development Cookbook
- Highcharts Cookbook
- Instant PHP Web Scraping
- BeagleBone Robotic Projects(Second Edition)
- RubyMotion iOS Develoment Essentials
- Everyday Data Structures
- Python函數式編程(第2版)
- 監控的藝術:云原生時代的監控框架
- Clojure High Performance Programming(Second Edition)
- Flask開發Web搜索引擎入門與實戰
- Python計算機視覺與深度學習實戰
- Head First Kotlin程序設計