forked from Ourpalm/ILRuntime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Test05.cs
488 lines (420 loc) · 11.8 KB
/
Test05.cs
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
//using CSEvilTestor;
using System;
using System.Collections.Generic;
using System.Text;
namespace TestCases
{
class Student<T>
{
public T name;
public Student(T name)
{
this.name = name;
Console.WriteLine(name);
}
}
class TestExplicit
{
bool boolVal;
double doubleVal;
public TestExplicit()
{
}
public TestExplicit(bool boolVal)
{
this.boolVal = boolVal;
}
public TestExplicit(double doubleVal)
{
this.doubleVal = doubleVal;
}
public static explicit operator bool(TestExplicit data)
{
return data.boolVal;
}
public static explicit operator double(TestExplicit data)
{
return data.doubleVal;
}
}
public class B
{
public int aa = 2;
public B()
{
}
public B(int a)
{
aa = a;
}
public virtual void Print()
{
Console.WriteLine("I am B"); ;
}
}
class A
{
public int a = 1;
public A(int a)
{
this.a = a;
}
public void Check(A e)
{
Console.WriteLine("other != this = " + (e != this && e.Geta() == this.Geta()));
}
public int Geta()
{
return a;
}
}
class NRow<A, B>
{
public A K { get; set; }
public B V { get; set; }
}
class Test05
{
class MGenericTest
{
public TestStruct TestGeneric<T>(string a, string b)
{
return TestGenericSub<T>(a, b);
}
TestStruct TestGenericSub<T>(string a, string b)
{
TestStruct res = new TestStruct();
res.address = a + b;
return res;
}
}
public struct TestStruct
{
public int id;
public string address;
public override string ToString()
{
return id.ToString();
}
}
public static void TestStudent()
{
Student<string> a = new TestCases.Student<string>("aaaaaa");
Console.WriteLine(a.name);
}
public static void UnitTest_Out2()
{
Dictionary<string, TestClassC[]> data = new Dictionary<string, TestClassC[]>();
data["key"] = new TestClassC[1] { new TestClassC() };
TestClassC[] item;
data.TryGetValue("key", out item);
Console.WriteLine("value : " + item[0]);
}
class TestClassC
{
}
public static void TestArrayValueType()
{
int[] arr = new int[4] { 1, 2, 3, 4 };
for(int i = 0; i < arr.Length; i++)
{
string str = arr[i].ToString();
Console.WriteLine("!!! new str = " + str);
}
}
public static void TestGenericMethod()
{
var test = TestGenericMethodSub();
var r = test.TestGeneric<ILRuntimeTest.TestFramework.TestClass3>("123", "456");
Console.WriteLine("address " + r.address);
}
public static void TestGenericMethod2()
{
var res = GetRows<int, int>("123", "345");
Console.WriteLine(string.Format("res[0], K={0} V={1}", res[0].K, res[0].V));
var res2 = GetRows<int, double>("789", "345.678");
Console.WriteLine(string.Format("res2[0], K={0} V={1}", res2[0].K, res2[0].V));
}
static List<NRow<A, B>> GetRows<A, B>(string a, string b)
{
List<NRow<A, B>> res = new List<TestCases.NRow<A, B>>();
NRow<A, B> row;
for (int i = 0; i < 1; i++)
{
row = new TestCases.NRow<A, B>();
row.K = (A)Convert.ChangeType(a, typeof(A));
row.V = (B)Convert.ChangeType(b, typeof(B));
res.Add(row);
}
return res;
}
static MGenericTest TestGenericMethodSub()
{
return new MGenericTest();
}
public static void TestStructDictionary()
{
Dictionary<int, TestStruct> dicts = new Dictionary<int, TestStruct>();
for(int i = 0; i < 2; i++)
{
var def = new TestStruct();
def.id = i;
def.address = "address " + i;
dicts.Add(i, def);
}
List<TestStruct> lists = new List<TestStruct>();
foreach(var i in dicts.Values)
{
lists.Add(i);
}
for(int i = 0; i < lists.Count; i++)
{
var item = lists[i];
Console.WriteLine(string.Format("id:{0} address:{1}", item.id, item.address));
}
}
public static void TestMethodDefaultStructValue()
{
PrintValue(100);
}
public static void PrintValue(int a, TestStruct b = default(TestStruct))
{
Console.WriteLine("a = " + a + ", b = " + b.ToString());
}
public static void TestForEach()
{
List<string> a = new List<string>() { "1", "2", "3" };
foreach (var i in a)
{
ParseOne(i);
}
}
public static void TestForEachTry()
{
List<string> a = new List<string>() { "1", "2", "3" };
foreach(var i in a)
{
try
{
ParseOne(i);
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
}
}
static string ParseOne(string line)
{
Console.WriteLine(line.ToString());
throw new NotSupportedException("error");
}
static bool CheckValue(List<B> lst)
{
foreach (B a in lst)
{
if (a.aa >= 1)
{
Console.WriteLine("CheckValue 111111");
return false;
}
}
Console.WriteLine("CheckValue 2222222");
return true;
}
public static void TestReturn()
{
CheckValue(new List<B>() { new B(1), new B(2) });
}
public static void TestThis()
{
A aa = new A(5);
aa.Check(aa);
}
class t
{
public long a = 0;
}
class a
{
public long b = 1111;
}
public static void TestEqual()
{
Console.WriteLine("TestEqual");
var t = new t();
var a = new a();
if (t.a == 0 || t.a == a.b)
{
Console.WriteLine("TestEqual true");//这行不执行
}
Console.WriteLine("TestEqual end ");
}
public static void TestStringFormat()
{
Console.WriteLine("TestStringFormat");
var ts = string.Format("{0}{1}{2}{3}", 1, "gfgf", -3, 4);
Console.WriteLine(ts);
Console.WriteLine("TestStringFormat End");
}
public static void ParseDB<T>(System.Action<int, T> cbk) where T : new()
{
}
public static string Test()
{
ParseDB<B>((c, d) =>
{
});
ParseDB<TestExplicit>((c, d) =>
{
});
return "xxxx1";
}
public static void TestArrayNull()
{
Console.WriteLine("TestArrayNull");
byte[] b = null;
if (b != null)
{
Console.WriteLine("Error");
}
Console.WriteLine("TestArrayNullEnd ");
}
public static void TestStringNull()
{
string str = null;
if (!string.IsNullOrEmpty(str))
Console.WriteLine("Error");
}
public static void TestTypeof()
{
Dictionary<Type, int> dic = new Dictionary<Type, int>();
dic[typeof(TestCls2)] = 2;
int a;
if (dic.TryGetValue(typeof(TestCls), out a))
{
Console.WriteLine("Error!!!");
}
}
public static void TestExplicit()
{
TestExplicit data = new TestCases.TestExplicit(true);
bool boolVal = (bool)data;
Console.WriteLine("bool=" + boolVal);
data = new TestCases.TestExplicit(1.2);
double doubleVal = (double)data;
Console.WriteLine("double=" + doubleVal);
}
interface IInterface
{
void Check();
}
struct MM : IInterface
{
public int i;
public string s;
public void Check()
{
Console.WriteLine("checkkk:" + i);
}
}
public static void TestGenericArray()
{
var d = new MM[]
{
new MM() {i = 1, s = "01"},
new MM() {i = 2, s = "02"},
};
//d = new MM(); //对于MM没问题
TestGenericArraySub(d);
}
private static void TestGenericArraySub<T>(T d)
{
object obj = d; //此处抛异常, 如果T不是MM[],而是MM,就没有这个问题
}
public static void TestGenericStruct()
{
var m2 = new MM() { i = 1, s = "01" };
Ttt(m2); //抛异常
Ttt2(m2);//正确
}
static void Ttt<T>(T obj) where T : IInterface
{
obj.Check();
}
static void Ttt2(IInterface obj)
{
obj.Check();
}
public static void Run()
{
TestTryCatch();
if (c5 == null)
{
c5 = new C5();
Console.WriteLine(C6.A.ToString());
Console.WriteLine(C6.B);
C6.A = 1;
Console.WriteLine(C5.A);
C6.foo();
Console.WriteLine(C6.B);
TestTryCatch();
}
}
static void TestTryCatch()
{
try
{
try
{
c5.bar();
}
catch (Exception ex)
{
Console.WriteLine(string.Format("{0}\n{1}\n{2}", ex.Message, ex.Data["StackTrace"], ex.StackTrace));
}
c5.bar();
throw new NotImplementedException("new exception");
}
catch (NotSupportedException err)
{
Console.WriteLine("not here.");
Console.WriteLine(err.ToString());
return;
}
catch (NotImplementedException err)
{
Console.WriteLine("Got.");
Console.WriteLine(err.ToString());
}
catch (Exception err)
{
Console.WriteLine("Got 2.");
Console.WriteLine(err.ToString());
}
finally
{
Console.WriteLine("Finally");
}
Console.WriteLine("Finished");
}
static C5 c5 = null;
}
class C6 : C5
{
public static string B = "tt";
public static void foo()
{
B = "aa";
}
}
class C5
{
public static int A = 4;
public void bar()
{
Console.WriteLine("bar = " + A);
}
}
}