Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Syntax

    Hi,

    In a subclass, is

    sub new()
    end sub

    the same as

    sub new()
    mybase.new()
    end sub


    Thanks

    Chris Ma



    yma Guest

  2. Similar Questions and Discussions

    1. if/else tag syntax
      Hello, I know, how to do if/else in Actionscript, but how can I do something like if/else in MXML syntax? I want to decide on startup/compile...
    2. Help with SYntax, Please!
      I want the name of a product to show IF the Name field is NOT NULL AND if there's an image for that Record. Can anyone help? Here's the code...
    3. If than syntax help please
      I'm trying to say: If price2 equals the selected price than apply the style bold price. If price 2 is nothing or zero than show nothing. If price...
    4. Syntax again - Help!
      I have a movie clip instance named 22mc. Can anyone tell me why this is not good syntax: on (release) { with (_root.22mc) { play(); } } ...
    5. Help with DB2 Syntax.
      Hi Everyone, Recently our comany upgraded their applications from MS ACCESS 2000 to DB2 version 7.2 UDB. I'm not as skilled in DB2 with the...
  3. #2

    Default Re: Syntax

    No,

    the first instantiates <subclass>::new(), and if it exists in the base
    class, overrides it so that the <baseclass>::new() is not called.
    the seconds does the first, but then calls any instantiation of the
    baseclass as well...

    the second is used if you have something that's initialised in the base
    class, which you want initialised, but then wish to further initialise in
    some way...

    for example...

    base class is called Animal
    the sub class is called Dog

    you may say that an animal as the class action, which then calls initialises
    breathe...
    but then the Dog calls this base initialisation and calls Bark... you want
    both Bark and Breathe to be initialised or the dog won't be barking for
    long!



    "yma" <yma@pacbell.net> wrote in message
    news:%23guayrWQDHA.1752@TK2MSFTNGP12.phx.gbl...
    > Hi,
    >
    > In a subclass, is
    >
    > sub new()
    > end sub
    >
    > the same as
    >
    > sub new()
    > mybase.new()
    > end sub
    >
    >
    > Thanks
    >
    > Chris Ma
    >
    >
    >

    Daniel Bass Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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