Java: define terms initialization, declaration and assignment

后端 未结 7 608
轻奢々
轻奢々 2020-11-22 16:12

I find the defs circular, the subjects are defined by their verbs but the verbs are undefined! So how do you define them?

The Circular Definitions

相关标签:
7条回答
  • 2020-11-22 17:18

    Step 1: Declaration : int a;

    Step 2: Initialization : a = 5;

    Step 3: Assignment: a = b; (ex: int b = 10 ; now a becomes 10)

    0 讨论(0)
提交回复
热议问题