- Distributed Computing in Java 9
- Raja Malleswara Rao Pattamsetti
- 54字
- 2025-04-04 19:00:33
Structures
Structures are used to define reusable data types. Their syntaxes have a keyword struct followed by a variable, which acts as a valid type name.
The basic data types advised by the IDL and their corresponding descriptions are as follows:
interface EmployeeRegistry {
struct address_spec {
name string <100>;
salary float;
};