Blog of Bruce
2023年10月20日 星期五
變異數和標準差
›
> 旅遊時,導遊說我們的團平均年齡是30歲,但一去時,發現大部分都是爺爺奶奶帶孫子去玩,確時是平均30沒錯,但有可能會以為大部分都 30 左右,所以這時就有標準差的出現,0 表示都是30,數字越大就差越多 假設有一筆資料 1 3 3 9 1. 求平均數: 加總是 16,平均...
windows 標準輸出
›
# 標準輸出 > 正確的命令 > 檔案,也可用 1> > 正確的命令表示打完後「不會」出錯 1. echo xxx > d:\abc.txt 2. echo xxx 1> d:\abc.txt 每次都會清空之前的內容 --- # 標準附加輸...
2023年1月26日 星期四
java Native 調用 C
›
public class TestNative { public native void helloNative1(); public static native void helloNative2(); static { System.l...
2023年1月9日 星期一
C語言指針
›
線上測試 ※基本型態指針 // 包括 short int long float double chat #include <stdio.h> void test(int *d) { *d = 100; // 將 d 這個位址對應的值,改成 100; 寫 ...
2022年9月22日 星期四
jMeter 教學
›
2022年8月11日 星期四
lambda 的 this (java8 八)
›
/** * 印 this 的時候,會調用 Object.toString() * 匿名類別的 this:會先調用自己匿名類別的 toString,沒有才去 Object.toString * Lambda 的 this:會先調用「當下」類別的 toString,沒有才去 ...
2022年7月14日 星期四
Java 的 floorMod 和 %
›
// System.out.println(Math.floorMod(113, 30)); // 23 System. out .println(Math. floorMod ( 113 , - 30 )) ; // -7 System. out .println(Math. ...
›
首頁
查看網路版