2020년 1월 7일 화요일

Dictionary 사용 예제(특정값 나눠서 넣기)

특정파일을 원하는 크기만큼 나누려고 한건가...기억이 안남

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
//int를 넣은만큼 나누기
 
    [SerializeField]
 
    public Dictionary<intList<string>> totaldivine = new Dictionary<intList<string>>();
 
 
 
    public void dic_divine(int value)
 
    {
 
        int divinevalue = value;
 
        int totalLen = 99;
 
        //divinevalue = totalLen / 10;
 
 
 
        int vvv = totalLen / value;
 
        int count = 0;
 
        for (int i = 0; i < totalLen; i+= vvv)
 
        {
 
            List<string> tmp = new List<string>();
 
 
 
            if ((i + vvv) < totalLen)
 
            {
 
                tmp = new List<string>();
 
                for (int j = i; j < i + vvv; j++)
 
                {
 
                    tmp.Add(j.ToString());
 
                }
 
            } else
 
            {
 
                tmp = new List<string>();
 
                for (int j = i; j < totalLen; j++)
 
                {
 
                    tmp.Add(j.ToString());
 
                }
 
            }
 
 
 
            totaldivine.Add(count, tmp);
 
            count++;
 
        }
 
     
 
        for (int i = 0; i < totaldivine.Count; i++)
 
        {
 
            for (int k = 0; k < totaldivine[i].Count; k++)
 
            {
 
                Debug.Log("totaldivine["+i+"]["+k+"]" + totaldivine[i][k]);
 
            }
 
        }
 
 
 
    }
cs

댓글 없음:

댓글 쓰기

git rejected error(feat. cherry-pick)

 문제 아무 생각 없이 pull을 받지않고 로컬에서 작업! 커밋, 푸시 진행을 해버렷다. push에선 remote와 다르니 당연히 pull을 진행해라고 하지만 로컬에서 작업한 내용을 백업하지 않고 진행하기에는 부담스럽다(로컬작업 유실 가능성) 해결하려...