1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
using GLib;
class Maman.Bar : Object {
public void do_action () {
stdout.printf (" 2");
}
public static void do_static_action () {
stdout.printf (" 2");
}
public virtual void do_virtual_action () {
stdout.printf (" BAD");
}
}
class Maman.SubBar : Bar {
public override void do_virtual_action () {
stdout.printf (" 2");
}
static void accept_ref_string (ref string str) {
}
static void test_classes_methods_ref_parameters () {
string str = "hello";
accept_ref_string (ref str);
}
static int main (string[] args) {
stdout.printf ("Inheritance Test: 1");
var bar = new SubBar ();
bar.do_action ();
stdout.printf (" 3\n");
stdout.printf ("Static Inheritance Test: 1");
do_static_action ();
stdout.printf (" 3\n");
stdout.printf ("Virtual Method Test: 1");
bar.do_virtual_action ();
stdout.printf (" 3\n");
// test symbol resolving to check that methods of implemented
// interfaces take precedence of methods in base classes
stdout.printf ("Interface Inheritance Test: 1");
var foobar = new SubFooBar ();
foobar.do_action ();
stdout.printf (" 3\n");
test_classes_methods_ref_parameters ();
BaseAccess.test ();
string str, str2;
weak string weak_str;
test_out (out str);
assert (str == "hello");
test_out_weak (out weak_str);
assert (weak_str == "hello");
test_out_weak (out str2);
assert (str == "hello");
test_ref (ref str);
assert (str == "world");
test_ref_weak (ref weak_str);
assert (str == "world");
test_ref_weak (ref str2);
assert (str == "world");
return 0;
}
}
interface Maman.Foo {
public void do_action () {
stdout.printf (" 2");
}
}
class Maman.FooBar : Object {
public void do_action () {
stdout.printf (" BAD");
}
}
class Maman.SubFooBar : FooBar, Foo {
}
// http://bugzilla.gnome.org/show_bug.cgi?id=523263
abstract class Maman.AbstractBase : Object {
public abstract void foo ();
}
abstract class Maman.AbstractDerived : AbstractBase {
public override void foo () {
}
}
class Maman.DeepDerived : AbstractDerived {
}
// http://bugzilla.gnome.org/show_bug.cgi?id=528457
namespace Maman.BaseAccess {
public interface IFoo : Object {
public abstract int interface_method ();
public abstract int virtual_interface_method ();
}
public class Foo : Object, IFoo {
public virtual int virtual_method () {
return 1;
}
public int interface_method () {
return 2;
}
public virtual int virtual_interface_method () {
return 3;
}
}
public class Bar : Foo {
public override int virtual_method () {
return base.virtual_method () * 10 + 4;
}
public override int virtual_interface_method () {
return base.virtual_interface_method () * 10 + 5;
}
}
public class FooBar : Foo, IFoo {
public int interface_method () {
return base.interface_method () * 10 + 6;
}
public int virtual_interface_method () {
return -1;
}
}
public void test () {
var bar = new Bar ();
var foobar = new FooBar ();
assert (bar.virtual_method () == 14);
assert (bar.virtual_interface_method () == 35);
assert (foobar.interface_method () == 26);
}
}
void test_out (out string bar) {
bar = "hello";
}
void test_out_weak (out weak string bar) {
bar = "hello";
}
void test_ref (ref string bar) {
assert (bar == "hello");
bar = "world";
}
void test_ref_weak (ref weak string bar) {
assert (bar == "hello");
bar = "world";
}
|