LeFiXER Grandmaster Cheater Supreme Reputation: 20 Joined: 02 Sep 2011 Posts: 1066 Location: 0x90
|
Posted: Mon May 01, 2023 4:53 pm Post subject: |
|
|
AylinCE wrote: | It seems "barren" to me that the objects (Constructed objects) are made up of a single character.
It seems more logical to start within the framework where they can continue.
-- for example:
Code: | f=createForm()
p=createImage(f)
l=createLabel(f) |
instead of:
Code: | f1=createForm()
p1=createImage(f1)
l1=createLabel(f1) |
Of course this is my opinion.
You name the objects as you wish.
Either way, there won't be an incorrect "syntax" as a result.
... |
Ah, okay. For quick snippets of coding I use shortform for component names where possible. If there is some length to the code posted then I use more meaningful names because ambiguity can be a big problem, even with your method.
|
|