Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Other Discussions
  3. The Weird and The Wonderful
  4. Initializing an array of structures

Initializing an array of structures

Scheduled Pinned Locked Moved The Weird and The Wonderful
data-structures
23 Posts 11 Posters 1 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P peterchen

    I especially love the brackets he put around the loop bodies - in case he needs to add some additional instructions there!

    Burning Chrome ^ | Linkify!| FoldWithUs! | sighist

    T Offline
    T Offline
    Thomas Weller 0
    wrote on last edited by
    #21

    peterchen wrote:

    I especially love the brackets he put around the loop bodies

    Well, this can be a coding guideline. It may look a bit silly and pedantic to put brackets around a single statement, because it makes you write things like:

    if (somecondition)
    {
    return;
    }

    Tools like e.g. ReSharper (for C#) do that automatically, so you don't have to type. I've seen this often in larger teams, and it brings some more readability to the code. I do it myself... Or, as you suggest, it's simply an absence of any thinking or understanding. Who knows ? :cool: Regards Thomas

    www.thomas-weller.de Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
    Programmer - an organism that turns coffee into software.

    P 1 Reply Last reply
    0
    • T Thomas Weller 0

      peterchen wrote:

      I especially love the brackets he put around the loop bodies

      Well, this can be a coding guideline. It may look a bit silly and pedantic to put brackets around a single statement, because it makes you write things like:

      if (somecondition)
      {
      return;
      }

      Tools like e.g. ReSharper (for C#) do that automatically, so you don't have to type. I've seen this often in larger teams, and it brings some more readability to the code. I do it myself... Or, as you suggest, it's simply an absence of any thinking or understanding. Who knows ? :cool: Regards Thomas

      www.thomas-weller.de Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
      Programmer - an organism that turns coffee into software.

      P Offline
      P Offline
      peterchen
      wrote on last edited by
      #22

      Thomas Weller wrote:

      Well, this can be a coding guideline.

      Excactly - even though I don't subscribe to it, it is a common guideline to avoid a mistake like this:

      for (int i = 0; i < 15; ++i)
      anArray[i].field1 = 1;
      someotherarray[i].somefield = 2;

      It's just a strange idea, but someone, in the future, MIGHT come up with maybe another array to be assigned a different value. :rolleyes:

      Don't attribute to stupidity what can be equally well explained by buerocracy.
      My latest article | Linkify!| FoldWithUs! | sighist

      1 Reply Last reply
      0
      • Y Yusuf

        Do you get paid by LOC ;)

        Yusuf Oh didn't you notice, analogous to square roots, they recently introduced rectangular, circular, and diamond roots to determine the size of the corresponding shapes when given the area. Luc Pattyn[^]

        P Offline
        P Offline
        peterchen
        wrote on last edited by
        #23

        That would go

        // Set field to 1:
        anArray
        [
        // index
        0
        ].
        // field name
        field1

        // value
        1;

        Don't attribute to stupidity what can be equally well explained by buerocracy.
        My latest article | Linkify!| FoldWithUs! | sighist

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups