using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Data; namespace MSCTool { p ...
分类:
编程语言 时间:
2020-06-16 23:16:15
阅读次数:
102
https://www.cnblogs.com/dream-game/p/5532506.html using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T... ...
第1关:继承 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace K1 { public abstr ...
第1关:结构函数 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace H1 { class Prog ...
第1关:写一个函数 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace G1 { class Pro ...
ctrl+Alt打开terminal,uname -a查看linux内核版本。我这里安装的ubuntu的内核版本为5.4.0-29-generic。 socket.h中只有函数声明,要获得c文件得解压linux内核源码。 extern int socket (int __domain, int __ ...
分类:
其他好文 时间:
2020-06-14 20:33:35
阅读次数:
52
通过分析源码可以更好理解List<T>的工作方式,帮助我们写出更稳定的代码。 List<T>源码地址: https://github.com/dotnet/corefx/blob/master/src/System.Collections/src/System/Collections/Generic ...
分类:
Web程序 时间:
2020-06-13 23:22:08
阅读次数:
99
#include <stdio.h>#include <windows.h>int main(){ //创建打开文件 HANDLE cFile = CreateFile("D:\\filterBufFile.txt", GENERIC_READ | GENERIC_WRITE, 0, NULL, O ...
功能分析 将源目录Source的文件复制到目录Target中并替换文件名和文件内容 效果图 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using Sy ...
分类:
其他好文 时间:
2020-06-13 12:43:36
阅读次数:
65
1 创建Django工程 1.1 安装pip,django等相关插件 1.2 创建app 1.3 创建视图 from django.shortcuts import render, HttpResponse from django.views.generic import View # Create ...