- 博客(8)
- 收藏
- 关注
原创 android GSON序列化和反序列号
序列化String jsonString = new Gson().toJson(obj);反序列化对象:XXXClass obj = new Gson().fromJson(jsonString, XXXClass.class);对象列表:ArrayList<XXXClass> objs = new Gson().fromJson(jsonString,...
2019-08-07 17:15:21
674
原创 李宏毅《机器学习》笔记
开源地址:https://github.com/datawhalechina/leeml-notes配套视频:https://www.bilibili.com/video/av59538266
2019-08-07 16:26:20
135
原创 C# Form最前端最大化显示
窗口最前端最大化显示this.WindowState = FormWindowState.Maximized; this.Activate();this.Show();this.TopMost = true;
2019-08-07 16:18:35
475
原创 c# 开启线程
带参不带参都有了https://www.cnblogs.com/warioland/archive/2011/10/13/2210545.html
2019-08-07 16:14:52
155
原创 c# 动态加载dll并创建接口类对象
命名空间using System.Reflection;using System.Windows.Forms;//codestring dllPath = System.Windows.Forms.Application.StartupPath + "\\" + dllName;Assembly assembly = Assembly.Load(fileBytes);T...
2019-08-07 15:52:21
784
原创 DenseNet-caffe
https://github.com/shicai/DenseNet-CaffeDenseNet_161.prototxtDenseNet_121.prototxtDenseNet_169.prototxtDenseNet_201.prototxt
2019-08-07 15:46:41
252
原创 .net Newtonsoft.Json序列化和反序列号
引用:Newtonsoft.Json.dll使用命名空间:using Newtonsoft.Json;序列化:string jsonStr = JsonConvert.SerializeObject(对象);反序列化:XXX obj = JsonConvert.DeserializeObject<XXX>(json字符串);List<XXX>...
2019-08-07 15:17:11
447
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人