Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Static Semantics meaning?

What does term "static semantics" mean in programming?

What is relationship between static semantics, semantics and dynamic semantics?

I know that semantics stands for checking if written code (without syntax errors) has any meaning.

like image 738
luka032 Avatar asked Jan 24 '26 01:01

luka032


2 Answers

Semantics is about meaning. It includes:

  • the static semantics, which is the part that can be ascertained at compile time, including data typing, whether all variables are declared, which declaration applies to which variable in the case of scoping, what their type is, whether functions and methods are called with correct calling sequences, whether assignments are type-compatible, etc., and

  • dynamic semantics, which is what actually happens when the program is executed.

Source: Frank de Remer, Compiler Construction course, University of California, Santz Cruz, 1979.

like image 71
user207421 Avatar answered Jan 26 '26 01:01

user207421


Static properties of a program are those that the compiler can detect at compile time.

Only Static Semantic errors can be detected by the compiler at compile time.

Dynamic Semantic errors can only be detected upon execution, not by the compiler prior to execution.

like image 20
lonekebap Avatar answered Jan 26 '26 00:01

lonekebap



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!