in reply to Re^8: Best complex structure?
in thread Best complex structure?

In my case, I found this solution, because $structure is not declared.

Ah! That means you do not have strict and warnings enabled in your code?

Whilst it is fine to ask naive questions (at least once and maybe even twice :), not using strict and warnings is unacceptable when you are asking for help.

Why? Because each time you find a problem, and post code asking for help, the first thing I (and most others) are going to do is add strict and warnings and run perl -c yourscript in order to let the compiler tell us what errors you are making. Then we would have to post a reply pointing these problem out to you.

Why should we do this, when the compiler can tell you about your mistakes directly?

The compiler may seem pedantic and complain about a lot of things that you seem to be able to get away with by ignoring them, but each of those warnings is there for a very good reason: That of helping you write better code.

If you choose to not use strict and warnings, you are effectively saying that you know better than the compiler. In which case, you don't need my help, because I always let the compiler point out my errors.

This code

push @structure , []; for (my $i=0;$i<= $#ex; $i++) { push @{ @structure->[$j]}, $ex[$i]; }

Produces a warning. But more importantly, demonstrates that you are misunderstanding something quite important. Enabling warnings and working out how to stop that warning being produced will force you to become aware of that misunderstanding. It is much better that you do this now, before you misunderstanding becomes a long term habit that will continue to bite you each time you make it.


Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
Lingua non convalesco, consenesco et abolesco. -- Rule 1 has a caveat! -- Who broke the cabal?
"Science is about questioning the status quo. Questioning authority".
The "good enough" maybe good enough for the now, and perfection maybe unobtainable, but that should not preclude us from striving for perfection, when time, circumstance or desire allow.

Replies are listed 'Best First'.
Re^10: Best complex structure?
by mat21 (Beadle) on Jun 10, 2005 at 13:04 UTC
    My explanation was maybe not accurate. (english is not my mother tongue sorry)
    Of course, I always use the pragma strict and warnings
    I must admit that I did not know -c but fortunatly my syntax is correct :)

    However your are right, I misunderstood something. let me just explain why, because I would not like that you keep in mind a wrong opinion.
    With $structure->[$j] I got an error message Global symbol "$struture" requires explicit package name
    I know what I mean. I have to declare a variable with "my". I did not understand why because I thougt that $structure->[$j] was declared with my @structure
    exactly like when you declare @array, you don't need to declare $arrray for using $arrray[$i].
    With @structure->[$j], I got a message explaning that it is deprecated but at the ends it was working.

    ok so my code is
    my @statement; ... my @structure; foreach (@statement) { ... push @structure , []; for (my $i=0;$i<= $#ex; $i++) { push @{ $structure->[$j]}, $ex[$i]; } }
    but for the moment I have still this error. I will be more rigourous before asking another question
    thanks
    edit: it works with $structure[$j]. There is sometimes some things which look like strange but I know that strange behaviour of perl come from the misunderstanding of the programmer :)

      Sorry for my misunderstanding.

      But the problem got fixed so that good :)


      Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
      Lingua non convalesco, consenesco et abolesco. -- Rule 1 has a caveat! -- Who broke the cabal?
      "Science is about questioning the status quo. Questioning authority".
      The "good enough" maybe good enough for the now, and perfection maybe unobtainable, but that should not preclude us from striving for perfection, when time, circumstance or desire allow.