For example, in a simple program segment of two sentences in C++:
int a = 1;
a = 2;
The first sentence defines a as an integer variable, and its value is 1 at this time, and the second sentence assigns a value of 2.