- 博客(6)
- 收藏
- 关注
原创 Ubuntu基础
安装命令安装软件sudo apt install 软件名卸载软件sudo apt remove 软件名更新可用软件列表sudo apt update更新已安装的包sudo apt upgrade安装常用工具python 程序员sudo apt install pythonsudo apt install python3sudo apt insta...
2019-01-29 16:35:43
208
原创 C#里氏转换
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleStudy里氏转换{ class Program { static void Main(stri...
2019-01-14 22:06:41
681
原创 C#继承
父类using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleStudy{ class Person { /// <summary> ...
2019-01-14 10:31:21
348
原创 C# 字符串的处理
abcde -> edcbastring str = "abcde";char[] chs = str.tochararray();for (int i = 0; i < chs.length / 2; i++){ char temp = chs[i]; chs[i] = chs[chs.length - 1 - i]; chs[chs.length...
2019-01-12 17:50:08
606
原创 Delphi调用DLL
1、函数声明var FormMain: TFormMain; hDllq: THandle = 0; //dll句柄 {===== 采集 DLL 开始 ======================================================================} ...
2018-09-07 16:12:08
4811
原创 Delphi Teechart 导出数据格式
1、引用uses VCLTee.TeeStore2、添加SaveDialog3、保存图片procedure TFormMain.RzButton2Click(Sender: TObject);begin SaveDialog1.filter:='图片(*.bmp)|*.bmp'; if SaveDialog1.Execute then if SaveDial...
2018-09-07 15:48:41
889
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人