- 博客(14)
- 资源 (4)
- 收藏
- 关注
原创 Windows常用命令
control keymgr.dll凭据管理器。taskmgr (新版): 任务管理器(新版)timedate.cpl: 日期和时间设置。control desk.cpl自定义显示。services.msc: 本地服务设置。taskschd.msc: 任务计划程序。control mmsys.cpl声音。secpol.msc: 本地安全策略。powercfg.cpl: 电源选项。appwiz.cpl: 程序和功能。hdwwiz.cpl: 设备管理器。devmgmt.msc设备管理器。
2025-02-19 19:39:46
127
原创 查广播风暴 netstat -e
你好! 这是你第一次使用 Markdown编辑器 所展示的欢迎页。如果你想学习如何使用Markdown编辑器, 可以仔细阅读这篇文章,了解一下Markdown的基本语法知识。我们对Markdown编辑器进行了一些功能拓展与语法支持,除了标准的Markdown编辑器功能,我们增加了如下几点新功能,帮助你用它写博客:撤销:Ctrl/Command + Z重做:Ctrl/Command + Y加粗:Ctrl/Command + B斜体:Ctrl/Command + I标题:Ctrl/Command + S
2024-11-08 13:33:58
967
原创 delphi 内存资源不足,无法处理此命令
SharedSection使用以下格式指定系统和桌面堆:SharedSection = xxxx,yyyy,zzz其中xxxx定义系统范围堆的最大大小(以千字节为单位),yyyy定义每个桌面堆的大小,zzz定义一个“非交互”窗口站的桌面堆的大小。有一个注册表项可以增加来提高XP的堆大小。>在弹出窗口中,您将看到一个非常长的字段。如果你的程序使用了大量的Windows资源,它可能是一个资源堆短缺。>将ONLY yyyy值更改为8192(或更大),然后按OK。>退出注册表编辑器并重新启动PC以使更改生效。
2023-04-13 13:35:13
951
原创 怎样选择编程语言?
1、跟硬件打交道时,用C语言,开发操作系统、设备驱动(Brian W.Kernighan:我认为在所有编程语言中C 仍然是在效率、表达能力、体积上最为平衡的一种。没有任何一种其他的语言能够产生像C一样运行快速的代码,也没有任何一种语言能够在编程的整个过程中产生如此紧凑的程序。所以在关心效率和代码体积的场合C 仍然是一个不错的选择。假若我要写一个程序来操作大量的文本数据时我会使用像Python 之类的语言,但是倘若我要写一个操作系统、设备驱动或者类似的重视效率和完全控制硬件的系统时,我会使用C。)2、跟互联
2022-01-23 11:46:13
877
原创 C# LINQ join 子句
using System;using System.Collections.Generic;using System.Linq;namespace ConsoleApp4{ //武林高手 class MatialArtsMaster { public int ID { get; set; } public string Name { get; set; } public int Age { get; set; }
2021-07-17 16:35:41
220
原创 C# 使用 Newtonsoft.Json 实例
using System;using System.Collections.Generic;using Newtonsoft.Json.Linq;using Newtonsoft.Json;namespace ConsoleApp1{ class Program { public string Email { get; set; } public bool Active { get; set; } public DateTime
2021-07-03 17:17:32
229
原创 c#石头、剪刀、布
using System;namespace test{ class Program { static void Main(string[] args) { //按回车后,继续循环。 while (1 == 1) { Random ran = new Random(); int n = ran.Next(1,4);
2021-03-31 09:58:53
287
原创 SQL剪刀/石头/布
DECLARE @i INTSELECT @i=FLOOR(RAND()*100)IF @i<33BEGINPRINT ‘剪刀’ENDELSE IF @i>66BEGINPRINT ‘石头’ENDELSEBEGINPRINT ‘布’END
2021-03-30 17:36:59
174
原创 C#中日期加减
using System;using System.Text.RegularExpressions;namespace RegExApplication{ class Program { static void Main(string[] args) { DateTime dt = DateTime.Now; DateTime dt1=dt.AddYears(1); //增加一年
2021-03-22 16:37:20
600
原创 C#正则表达式提取数字或大小写字母
using System;using System.Text.RegularExpressions;namespace RegExApplication{ class Program { static void Main(string[] args) { //1、纯数字提取 Console.WriteLine("纯数字提取:" + Regex.Replace("abAB 001 2dd", @"[^0-
2021-03-21 10:43:51
9158
原创 C#正则表达式判断字符串是否包含大小写字母或数字
using System;using System.Text.RegularExpressions;namespace RegExApplication{ class Program { static void Main(string[] args) { string pattern = @"^[0-9]+$"; string str = "5511"; if (Regex.I
2021-03-20 15:36:08
4754
原创 VS2017中使用Git
1、右击解决方案,点击“将解决方案添加到源代码管理”,将项目添加到源代码管理2、在团队资源管理器上,双击刚才添加的项目,并点击同步3、填写地址:https://{username}:{password}@github.com/{username}/project.git4、点“发布”、同步。...
2020-11-25 15:21:54
733
Delphi android 编程入门教程
2015-12-25
delphi xe6下Datasnap实现安卓手机对服务器上数据库的操作
2015-12-25
超级鼠标键盘精灵
2013-06-20
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人