This is meant for rough "Rosetta" comparison, and clearly the two languages have some very different idioms and distinct semantics on various features.

Foo.pm:
package Foo; our @ISA = qw(Exporter Phoo); our $Bar = 6; my $Whig = 5; sub new { my $count if 0; $count++; my $self = { }; $self->{baz} = 4; return bless($self, shift()); } sub foo { my $self = shift; my $arg = shift; local $Whig = 3; $self->my_Phoo_func($Whig, $arg, $/); }
Foo.cpp:
#include "Foo.h" // class Foo : public Phoo { ... }; static int Foo::Bar = 6; static int Whig = 5; Foo::Foo() { static int count = 0; count++; this->baz = 4; } void Foo::foo(int arg) { int save_Whig = Whig; Whig = 3; this->my_Phoo_func(Whig, arg, "\n"); Whig = save_Whig; }

I mention the C++ this twice for clarity, though these are implicit, not required, and rarely mentioned in C++. Note that static means something entirely different inside a C++ function versus outside a function. The Perl hack my $foo if 0; is not something I recommend, but does emulate C++'s static lexical variables (or as Larry calls them, "persistent" between calls).

--
[ e d @ h a l l e y . c c ]


In reply to Re: Package-Level Variables by halley
in thread Package-Level Variables by Anonymous Monk

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.