HP SunSoft Pascal 4.0 Manuel d'utilisateur Page 97

  • Télécharger
  • Ajouter à mon manuel
  • Imprimer
  • Page
    / 333
  • Table des matières
  • MARQUE LIVRES
  • Noté. / 5. Basé sur avis des utilisateurs
Vue de la page 96
Program Construction and Management 73
4
By default, both definitions of variable x are public. Thus, when you compile
and link the program and module units, references to x refer to the same
variable, as follows:
If you compile the program giving the -xl option, the variables are private
by default, as follows:
You can get the same effect by explicitly declaring the variable in a private
var section. Similarly, when you use -xl, you can create public variables by
declaring them in a public var section.
As with routine declarations, it is often a good idea to declare public
variables in an include file. Doing so makes it easier to keep your
declarations consistent.
There are other methods for making variables visible to different units. See
Chapter 5, “Separate Compilation,” for more information.
hostname% pc program_unit3.p module_unit3.p
program_unit.p:
module_unit.p:
Linking:
hostname% a.out
Hello, world for the 1 time.
Hello, world for the 2 time.
Hello, world for the 3 time.
Hello, world for the 4 time.
Hello, world for the 5 time.
hostname% pc -xl program_unit.p module_unit.p
program_unit.p:
module_unit.p:
Linking:
hostname% a.out
Hello, world for the 0 time.
Hello, world for the 0 time.
Hello, world for the 0 time.
Hello, world for the 0 time.
Hello, world for the 0 time.
Vue de la page 96
1 2 ... 92 93 94 95 96 97 98 99 100 101 102 ... 332 333

Commentaires sur ces manuels

Pas de commentaire