Добавил:
Upload Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Lecture 1.docx
Скачиваний:
0
Добавлен:
01.07.2025
Размер:
704 Кб
Скачать

3.5. Summary

Having read this lecture, the student should be able to write quite usable programs. The following topics are the most important:

  • control statements: if and if - else

  • iteration loops

  • arrays

  • functions

The student should practise the above elements writing programs in simplified REXX. This environment makes the first steps in programming easy, as it hides from the programmer many technical details which are not necessary at the beginning. We leave the REXX now and move to a bit more sophisticated Java. The knowledge acquired so far turns out to be very useful in learning Java.

3.6. Exercises

All exercises are to be done using the simplified REXX.

  1. Create a program converting temperatures between Celsius and Fahrenheit degrees. Use control statements and functions.

  2. Create a currency calculator for more than two currencies. Use arrays and functions.

  3. Create a program which stores numbers typed at the command prompt (more than 10) into an array and then displays the elements of the array with 3 elements per line. Program should also display the maximum and the minimum element of the array as well as the average and the sum of all elements.

 

Lecture 4 Java and object-oriented methodology

Java makes many people think of applets executing in a web browser. For others it is an excellent programming language or a tool for implementing server or database transactions. All these points of view are undoubtedly legitimate but Java is something more than another programming language or a net tool.

One might say that nowadays Java is the richest and the most complete environment of universal and standardized methods for performing any computer science activity.

4.1. What is Java

4.1.1 Java as a universal programming language

Of course, above all Java is a universal programming language.

Syntactic similarity to the C/C++ languages makes it easy to master for a programmer familiar with languages. At the same time Java strives to excel its prototypes. A Java programmer does not have to bother with memory management (the garbage collector does the work for the programmer: it gets rid of unused objects from the memory). Java does not have pointer arithmetic which - allowing access to an arbitrary place in memory - is a frequent cause of errors.

Strict type checking detects many simple errors during compilation, which makes runtime conversions safe.

Proper exception handling enforced by the compiler makes programming in Java safe and reliable. The built-in concurrency mechanisms enable easy synchronization of parallel executing threads (i.e. concurrently executed parts of the same program).

All these ideas - although they might seem a bit weird now - will be explained in detail in the course of the lectures.

Undoubtedly the most important feature of the Java language is its object-orientedness. In general, this means that programs are easier to write and are more reliable than those prepared in non-object languages. Unfortunately Java is not fully object-oriented as some of its syntactic structures (for example the primitive types) are not object-oriented.

The advantages of Java as a programming language may be questionable. But it is not because of purity or excellence that it is worth learning.

Much more important is its universality in all computer applications achieved with cross-platform virtual machine and rich set of standardized libraries integrated with the Java environment.

Соседние файлы в предмете [НЕСОРТИРОВАННОЕ]