Web Log di Adrian Florea

"You know you've achieved perfection in design, not when you have nothing more to add, but when you have nothing more to take away." Antoine de Saint-Exupery
posts - 440, comments - 2715, trackbacks - 3944

My Links

Archives

Post Categories

Image Galleries

.RO Blogs

.RO People

.RO Sites

Blogs

Furls

Links

vinCitori

Quiz Sharp #52

Imports System
 
Class Foo
    Public Sub New()
        Console.WriteLine("Foo")
    End Sub
End Class
 
Class TestBase
    Public Sub New()
        Console.WriteLine("Base")
    End Sub
End Class
 
Class Test : Inherits TestBase
    Dim f As Foo = New Foo()
End Class
using System;
 
class Foo {
      public Foo() {
            Console.WriteLine("Foo");
      }
}
 
class TestBase {
      public TestBase() {
            Console.WriteLine("Base");
      }
}
 
class Test : TestBase {
      Foo f = new Foo();
}

Questi due snippet sembrano gemelli... E perché non lo sono?

P.S.: Non è a risposta multipla come gli altri quiz - ho fatto un'eccezione perché non mi pare che c'entri con gli altri test (agli ultimi due non avete ancora risposto! troppo strani?).

Print | posted on sabato 1 ottobre 2005 22:11 | Filed Under [ Quiz Sharp ]

Powered by:
Powered By Subtext Powered By ASP.NET