One writes methods in the same way as 'functions' (or subroutines). In fact, while you write them, there is no difference between a method and a 'normal' sub. It's only at *run*time when there's a small difference.

As for what you call 'attributes', they are just parameters. All parameters are passed to a subroutine (and hence, also a method), as a list. So, in your example, when start_html is call, it's called with three arguments, the first argument is the object on which the method is called, the second argument is the string -title, the third is the string test. It's up to the sub to take the list and turn it into a set of key/value pairs. One common technique is to do: my %args = @_; or some variation. I sometimes write: local %_ = @_;. If a sub is to be called as a method, the first argument of @_ is usually first shifted off.

Abigail


In reply to Re: Methods and attributes? by Abigail-II
in thread Methods and attributes? by stonecolddevin

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.