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
|
using GLib;
struct SimpleStruct {
public int field;
}
public struct PublicStruct {
public int field;
}
struct StructWithCreationMethod {
public StructWithCreationMethod () {
stdout.printf ("StructWithCreationMethod\n");
}
public int field;
}
struct StructWithNamedCreationMethod {
public StructWithNamedCreationMethod.named () {
stdout.printf ("StructWithNamedCreationMethod\n");
}
public int field;
}
void test_in_parameter (SimpleStruct st) {
stdout.printf ("test_in_parameter: st.field = %d\n", st.field);
}
void test_in_nullable_parameter (SimpleStruct? st) {
assert (st.field == 1);
}
void test_ref_parameter (ref SimpleStruct st) {
stdout.printf ("test_ref_parameter: st.field = %d\n", st.field);
st.field++;
}
void test_out_parameter (out SimpleStruct st) {
st = SimpleStruct ();
st.field = 3;
}
void main () {
stdout.printf ("Structs Test:\n");
stdout.printf ("new SimpleStruct ()\n");
var simple_struct = SimpleStruct ();
stdout.printf ("new PublicStruct ()\n");
var public_struct = PublicStruct ();
stdout.printf ("new StructWithCreationMethod ()\n");
var struct_with_creation_method = StructWithCreationMethod ();
stdout.printf ("new StructWithNamedCreationMethod ()\n");
var struct_with_named_creation_method = StructWithNamedCreationMethod.named ();
stdout.printf ("new SimpleStruct () { field = 1 }\n");
simple_struct = SimpleStruct () { field = 1 };
stdout.printf ("simple_struct.field = %d\n", simple_struct.field);
test_in_parameter (simple_struct);
test_in_nullable_parameter (simple_struct);
test_ref_parameter (ref simple_struct);
stdout.printf ("after test_ref_parameter: st.field = %d\n", simple_struct.field);
test_out_parameter (out simple_struct);
stdout.printf ("after test_out_parameter: st.field = %d\n", simple_struct.field);
stdout.printf (".\n");
}
|