2008-06-06 17:56:18 -06:00
|
|
|
// $G $D/$F.go && $L $F.$A && ./$A.out
|
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
type Element interface {
|
2008-06-06 17:56:18 -06:00
|
|
|
}
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
type Vector struct {
|
2008-06-06 17:56:18 -06:00
|
|
|
nelem int;
|
2008-12-18 23:37:22 -07:00
|
|
|
elem []Element;
|
2008-06-06 17:56:18 -06:00
|
|
|
}
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
func New() *Vector {
|
2009-01-06 16:19:02 -07:00
|
|
|
v := new(Vector);
|
2008-06-06 17:56:18 -06:00
|
|
|
v.nelem = 0;
|
2009-01-06 16:19:02 -07:00
|
|
|
v.elem = make([]Element, 10);
|
2008-06-06 17:56:18 -06:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *Vector) At(i int) Element {
|
|
|
|
return v.elem[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *Vector) Insert(e Element) {
|
|
|
|
v.elem[v.nelem] = e;
|
|
|
|
v.nelem++;
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2009-01-05 14:09:34 -07:00
|
|
|
type I struct { val int; };
|
2009-01-06 16:19:02 -07:00
|
|
|
i0 := new(I); i0.val = 0;
|
|
|
|
i1 := new(I); i1.val = 11;
|
|
|
|
i2 := new(I); i2.val = 222;
|
|
|
|
i3 := new(I); i3.val = 3333;
|
|
|
|
i4 := new(I); i4.val = 44444;
|
2008-06-06 17:56:18 -06:00
|
|
|
v := New();
|
2008-08-11 23:07:49 -06:00
|
|
|
print("hi\n");
|
2008-06-06 17:56:18 -06:00
|
|
|
v.Insert(i4);
|
|
|
|
v.Insert(i3);
|
|
|
|
v.Insert(i2);
|
|
|
|
v.Insert(i1);
|
|
|
|
v.Insert(i0);
|
|
|
|
for i := 0; i < v.nelem; i++ {
|
|
|
|
var x *I;
|
2009-02-11 18:55:16 -07:00
|
|
|
x = v.At(i).(*I);
|
2008-08-11 23:07:49 -06:00
|
|
|
print(i, " ", x.val, "\n"); // prints correct list
|
2008-06-06 17:56:18 -06:00
|
|
|
}
|
|
|
|
for i := 0; i < v.nelem; i++ {
|
2008-09-03 14:21:05 -06:00
|
|
|
print(i, " ", v.At(i).(*I).val, "\n");
|
2008-06-06 17:56:18 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
bug027.go:50: illegal types for operand
|
|
|
|
(<Element>I{}) CONV (<I>{})
|
|
|
|
bug027.go:50: illegal types for operand
|
|
|
|
(<Element>I{}) CONV (<I>{})
|
|
|
|
*/
|