三元運算 什麼是三元運算?請看下圖說明 透過上圖說明後,可以得出一個三元運算公式: result = 值1 if 條件 else 值2, 如果鯈件為真: result = 值1 如果鯈件為假: result = 值2 如果不寫三元運算的話,那原本的代碼就會寫的較為冗長,就像下面的代碼 #!/usr/bin/env python3 # -*- coding:utf-8 -*- a, b, c = 1, 3, 5 if a > b: d = a else: d = c print(d) ------…
利用上班時間發個隨筆,不知領導會不會看到,可能會有同事看到也說不定啊:) 關于可空類型,在C#1中沒有這個概念,在C#3中引入的.那比如我們要實現一個表示人的類,人有名字和年齡兩個屬性,如何表示一個沒有年齡的人呢? 一般作法會將一人int類型封裝成一個引用類型,有人的類中使用成員屬性,該屬性的類型為剛封裝的引用類型,如下 public class Person { private string name; private PersonAge age; public Person(string n…
System.ValueTuple 没有定义或者导入 'System.ValueTuple´2´ is not defined or imported System.ValueTuple 未定義或匯入預先定義的類型 遇到上述 Visual Studio 錯誤清單顯示的提示, 請用 Nuget 安裝 最新的 System.Runtime 就好.…
andriod function numericsonly(ob) { var invalidChars = /[^0-9]/gi if (invalidChars.test(ob.value)) { ob.value = ob.value.replace(invalidChars, ""); } } 調用的時候 numericsonly(this) iOS function IsNum(e) { //alert("xx"); var k = window.even…
/* -- for test DECLARE @content VARCHAR(50) DECLARE @folioId VARCHAR(50) DECLARE @opinionType VARCHAR(50) SET @content = 'this is board' SET @folioId = '4BC3141E-BEF5-4528-8B0B-600B7987246D' SET @opinionType = 'opinion_board' */ IF(EXISTS(SELECT opin…
基本型別包裝 (Wrapper Classes) 將基本型別生成物件,要將基本型別先包裝成物件,才能執行生成, Boxing: Integer a = new Integer(1) Unboxing: int x = a.intValue() Autoboxing(JDK1.5以後支援) Integer a = 1 [物 <= 基] ok int x = new Integer(1) [基 <= 物] ok 獲取其值 xxxValue() % Byte / Short / I…