JavaTXCompilerInJavaTX/examples/OldExamples/hama/test3.jav

29 lines
360 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
class Listststst4<A>
{
A objec = null;
Listststst4<A> next = new Listststst4();
void insert(A obj)
{
if(this.objec == null)
{
this.objec = obj;
}
else
{
this.next.insert(obj);
}
}
A getObjectAt(int n)
{
if(n == 0)
{
return this.objec;
}
else
{
return this.next.getObjectAt(n-1);
}
}
}