Static variable in Javascript?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • seans

    Static variable in Javascript?

    Hi,

    Is there a way to create a static variable in Javascript? I want to use
    a recursive function to traverse a DOM tree and examine each node. If
    the node is a text object I would like to save the text to a string or
    array. Is it possible to create an array or string variable to do this?

    Any advice would be greatly appreciated. Thanks again.

    sean

  • VK

    #2
    Re: Static variable in Javascript?


    seans wrote:[color=blue]
    > Hi,
    >
    > Is there a way to create a static variable in Javascript? I want to use
    > a recursive function to traverse a DOM tree and examine each node. If
    > the node is a text object I would like to save the text to a string or
    > array. Is it possible to create an array or string variable to do this?
    >
    > Any advice would be greatly appreciated. Thanks again.
    >
    > sean[/color]

    Static means shared by all object instances (other words it's a
    constant in the constructor referred by all created objects). ECMA
    variant of JavaScript doesn't have (yet?) neither constant nor static
    types but it can be more-or-less successfully emulated. Is it what
    you're looking for? Because from your task description the necessity of
    this type is not evident. You rather need a global array (?)

    Comment

    • Michael Winter

      #3
      Re: Static variable in Javascript?

      On 17/08/2005 11:37, VK wrote:

      [snip]
      [color=blue]
      > Static means shared by all object instances[/color]

      Unless the OP is referring to function-oriented statics. The only
      reference the OP makes to objects is with regard to text nodes.
      [color=blue]
      > (other words it's a constant in the constructor referred by all
      > created objects).[/color]

      A static in no way implies a constant value. Static members can be
      constant, but they don't have to be.
      [color=blue]
      > ECMA variant of JavaScript doesn't have (yet?) neither constant nor
      > static types but it can be more-or-less successfully emulated.[/color]

      To clarify, constants are not available in ECMAScript. However, both
      private and public static members can be implemented. The former uses a
      closure outside the constructor function. The latter is provided simply
      by adding properties to the constructor function.

      var MyObject = (function() {
      /* Declare private static variables here */

      function constructor() {
      /* ... */
      }
      constructor.myS tatic = 'myValue';

      return constructor;
      })();

      MyObject.myStat ic // 'myValue'

      [snip]

      Mike

      --
      Michael Winter
      Prefix subject with [News] before replying by e-mail.

      Comment

      • Martin Honnen

        #4
        Re: Static variable in Javascript?



        seans wrote:
        [color=blue]
        > Is there a way to create a static variable in Javascript? I want to use
        > a recursive function to traverse a DOM tree and examine each node. If
        > the node is a text object I would like to save the text to a string or
        > array. Is it possible to create an array or string variable to do this?[/color]

        The term "static variable" has probably different meanings depending on
        whom you ask or which existing programming language you have in mind.
        As for that recursive function, can't you simply return the text as
        needed or pass the text string (or array if needed) around with each
        function call?
        Imagine you wanted to concatenate the text node value of all descendants
        of a node then you could do that alike (pseudo code not meant to be a
        complete implementation covering all node types)
        function getInnerText (node) {
        if (node.nodeType == 3) {
        return node.nodeValue;
        }
        else if (node.nodeType == 1) {
        var innerText = '';
        for (var i = 0; i < node.childNodes .length; i++) {
        innerText += getInnerText(no de.childNodes[i]);
        }
        return innerText;
        }
        else {
        return '';
        }
        }
        so that approach would simply return the string from each recursive call
        and concatenate it as needed.
        Or you could build an array if strings if you prefer that and pass it
        along e.g. (again pseudo code not meant to be a complete implementation)
        function getInnerTextArr ay (node, textArray) {
        if (typeof textArray == 'undefined') {
        textArray = [];
        }
        if (node.nodeType == 3) {
        textArray[textArray.lengt h] = node.nodeValue;
        }
        else if (node.nodeType == 1) {
        for (var i = 0; i < node.childNodes .length; i++) {
        getInnerTextArr ay(node.childNo des[i], textArray);
        }
        }
        return textArray;
        }


        --

        Martin Honnen

        Comment

        • seans

          #5
          Re: Static variable in Javascript?

          Thanks everyone for all your help.

          sean

          Comment

          • seans

            #6
            Re: Static variable in Javascript?

            Thanks everyone for all your help.

            sean

            Comment

            Working...