|
大小: 776
备注:
|
大小: 1792
备注:
|
| 删除的内容标记成这样。 | 加入的内容标记成这样。 |
| 行号 55: | 行号 55: |
| {{{#!perl | {{{ package Message; # Message class constructor sub new { my $class = shift; my $txt = shift; my $self = {}; $self->{txt} = $txt; bless ($self, $class); return $self; } #Message->print() method sub print{ my $self = shift; if ($self->{txt} eq ""){ print "No message"; }else{ for($i=0;$i<3;$i++){ print $self->{txt},"\n"; } } return $self } 1; }}} {{{ |
| 行号 61: | 行号 90: |
== Visual BASIC == {{{ class Message Private theTxt Public Property Let TXT(S) theTxt = S End Property Public Sub Print() Wscript.echo theTxt End Sub End Class Dim M set M = new Message M.TXT = "Hello world" m.Print() }}} == Java == {{{ class Msg{ private String txt; public Msg(String s){ txt = s; } public void print(){ System.out.println(txt); } } public class hello{ public static void main(String args[]){ Msg M = new Msg("hello world"); M.print(); int i = 0; } } }}} |
C++
Delphi
program hellopas;
{$APPTYPE CONSOLE}
uses windows;
type Message = class
txt : string;
constructor create(s:string);
procedure print;
end;
constructor Message.Create(s:string);
begin
txt := s
end;
procedure Message.print;
begin
writeln(txt)
end;
var m : Message;
begin
m := Message.Create('Hello world');
m.print()
end.
Perl
package Message;
# Message class constructor
sub new {
my $class = shift;
my $txt = shift;
my $self = {};
$self->{txt} = $txt;
bless ($self, $class);
return $self;
}
#Message->print() method
sub print{
my $self = shift;
if ($self->{txt} eq ""){
print "No message";
}else{
for($i=0;$i<3;$i++){
print $self->{txt},"\n";
}
}
return $self
}
1;require Message;
$m = Message->new("Hello World");
$m->print();
Visual BASIC
class Message
Private theTxt
Public Property Let TXT(S)
theTxt = S
End Property
Public Sub Print()
Wscript.echo theTxt
End Sub
End Class
Dim M
set M = new Message
M.TXT = "Hello world"
m.Print()
Java
class Msg{
private String txt;
public Msg(String s){
txt = s;
}
public void print(){
System.out.println(txt);
}
}
public class hello{
public static void main(String args[]){
Msg M = new Msg("hello world");
M.print();
int i = 0;
}
}