v

[ActionScript 3.0] HashMap

· 2011-12-08 (목) 14:36:31 · 3167
 
 - ActionsCript 작업중 , hashmap를 이용할 일이 었어서 검색을 하던 중 발견 하여 . 올려 봅니다.

class com.lib.data.holder.map.HashMap
{
   
    public var keys:Array;
    public var values:Array;
    //
    public function HashMap(source)
    {
        super();
        this.keys = new Array();
        this.values = new Array();
        this.populate(source);
    }
    public function populate(source)
    {
        if (source)
        {
            for (var i in source)
            {
                this.put(i, source[i]);
            }
        }
    }

    public function containsKey(key)
    {
        return (this.findKey(key) > -1);
    }
    public function containsValue(value)
    {
        return (this.findValue(value) > -1);
    }
    public function getKeys(Void)
    {
        return (this.keys.slice());
    }
    public function getValues(Void)
    {
        return (this.values.slice());
    }
    public function get(key)
    {
        return (values[this.findKey(key)]);
    }
    public function put(key, value)
    {
        var oldKey;
        var theKey = this.findKey(key);
        if (theKey < 0)
        {
            this.keys.push(key);
            this.values.push(value);
        }
        else
        {
            oldKey = values[theKey];
            this.values[theKey] = value;
        }
        return (oldKey);
    }
    public function putAll(map)
    {
        var theValues = map.getValues();
        var theKeys = map.getKeys();
        var max = keys.length;
        for (var i = 0; i < max; i = i - 1)
        {
            this.put(theKeys[i], theValues[i]);
        }
    }
    public function clear(Void)
    {
        this.keys = new Array();
        this.values = new Array();
    }
    public function remove(key)
    {
        var theKey = this.findKey(key);
        if (theKey > -1)
        {
            var theValue = this.values[theKey];
            this.values.splice(theKey, 1);
            this.keys.splice(theKey, 1);
            return (theValue);
        }
    }
    public function size(Void)
    {
        return (this.keys.length);
    }
    public function isEmpty(Vois)
    {
        return (this.size() < 1);
    }
    public function findKey(key)
    {
        var index = this.keys.length;
        while(this.keys[--index] !== key && index > -1)
        {
        }
        return(index);
    }
    public function findValue(value)
    {
        var index = this.values.length;
        while(this.values[--index] !== value && index > -1)
        {
        }
        return (index);
    }
}


##사용방법##
import com.lib.data.holder.map.*;

/* Add John to your `contact` list */
var myContacts:HashMap = new HashMap();
myContacts.put("John", new HashMap());

/* Get John, and add a `contacts` list */
var contact:HashMap = myContacts.get("John");
contact.put("contacts", new HashMap());

/* Add Johns contacts to the list */
var theContacts:HashMap = contact.get("contacts");
theContacts.put(0, "Mary");
theContacts.put(1, "Alex");
theContacts.put(2, "Julie");

/* Is Alex a contact of John? */
var isContact = myContacts.get("John").get("contacts").containsValue("Alex");
if (isContact) trace("Alex is contact of John");
else trace("Alex is Not a contact of John");

/* Is Mark a contact of John? */
var isContact = myContacts.get("John").get("contacts").containsValue("Mark");
if (isContact) trace("Mark is contact of John");
else trace("Mark is Not a contact of John");

 
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
11-12-23 조회 3,917
11-12-23 조회 2,737
11-12-23 조회 4,565
11-12-23 조회 4,125
11-12-23 조회 2,627
11-12-23 조회 7,878
11-12-22 조회 2,930
11-12-22 조회 3,646
11-12-22 조회 3,381
11-12-22 조회 3,177
11-12-22 조회 3,392
11-12-21 조회 3,283
11-12-21 조회 3,136
11-12-21 조회 3,446
11-12-21 조회 3,855
11-12-21 조회 2,834
11-12-21 조회 3,293
11-12-21 조회 4,327
11-12-21 조회 4,149
11-12-21 조회 3,126
11-12-20 조회 3,596
11-12-19 조회 6,114
11-12-19 조회 2,793
11-12-19 조회 4,881
11-12-17 조회 3,608
11-12-17 조회 4,054
11-12-17 조회 3,261
11-12-16 조회 3,023
11-12-16 조회 3,053
11-12-15 조회 3,180
11-12-15 조회 3,234
11-12-15 조회 4,114
11-12-15 조회 5,377
11-12-15 조회 4,391
11-12-15 조회 3,077
11-12-15 조회 3,847
11-12-15 조회 3,949
11-12-14 조회 2,764
11-12-14 조회 4,091
11-12-14 조회 5,410
11-12-13 조회 3,962
11-12-13 조회 4,898
11-12-13 조회 5,940
11-12-13 조회 6,223
11-12-13 조회 4,619
11-12-12 조회 2,984
11-12-12 조회 3,334
11-12-12 조회 6,088
11-12-12 조회 4,463
11-12-12 조회 3,603
11-12-12 조회 6,005
11-12-11 조회 4,562
11-12-10 조회 2,680
11-12-10 조회 4,632
11-12-09 조회 2,735
11-12-09 조회 3,030
11-12-09 조회 3,945
11-12-09 조회 3,571
11-12-09 조회 3,806
11-12-09 조회 3,307
11-12-09 조회 4,364
11-12-09 조회 3,059
11-12-09 조회 3,068
11-12-09 조회 2,853
11-12-09 조회 3,591
11-12-08 조회 3,288
11-12-08 조회 3,168
11-12-08 조회 7,532
11-12-08 조회 4,024
11-12-08 조회 3,395
11-12-08 조회 2,806
11-12-08 조회 1.2만
11-12-08 조회 3,840
11-12-07 조회 2,748
11-12-07 조회 2,753
11-12-07 조회 3,708
11-12-07 조회 4,316
11-12-07 조회 3,761
11-12-07 조회 2,984
11-12-07 조회 4,317
11-12-06 조회 4,220
11-12-06 조회 5,427
11-12-06 조회 3,502
11-12-06 조회 3,538
11-12-05 조회 2,969
11-12-05 조회 3,134
11-12-05 조회 4,447
11-12-05 조회 3,159
11-12-05 조회 4,773
11-12-05 조회 2,804
11-12-05 조회 5,758
11-12-05 조회 2,874
11-12-05 조회 4,318
11-12-04 조회 5,583
11-12-04 조회 2,888
11-12-04 조회 3,131
11-12-03 조회 3,474
11-12-03 조회 2,914
11-12-03 조회 3,478
11-12-03 조회 3,363