(一)OS的接口有两类: GUI:Graphic User Interface (图形化界面接口) CLI:Command Line Interface(文本式接口) (二)API 及 ABI 1. API:Application Program Interface 程序员面对的编程接口 2.ABI ...
分类:
系统相关 时间:
2021-06-28 17:38:15
阅读次数:
0
import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * @author: small-sunshine * @Description:考拉兹猜想,100万以内的数 * @date: 2021/ ...
分类:
其他好文 时间:
2021-06-25 17:25:25
阅读次数:
0
public class ResList { public int ID { get; set; } public List<ResList> Child { get; set; } = null; public int Parent { get; set; } public int Rank { ...
分类:
其他好文 时间:
2021-06-25 17:23:59
阅读次数:
0
import com.alibaba.fastjson.JSON; import org.apache.commons.lang.StringUtils; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; ...
分类:
Web程序 时间:
2021-06-25 17:08:46
阅读次数:
0
练习一:随机输入你心中想到的一个名字,然后输出它的字符串长度 Length:可以得字符串长度 using System; namespace 字符串的各种方法 { class Program { static void Main(string[] args) { //练习一:随机输入你心中想到的一个 ...
分类:
其他好文 时间:
2021-06-25 16:48:53
阅读次数:
0
em, i { font-style: normal } * { margin: 0; padding: 0 } li { list-style: none } /* 图片后字体垂直于中部位置*/ img { border: 0; vertical-align: middle } /* 鼠标为指针样 ...
分类:
Web程序 时间:
2021-06-25 16:46:21
阅读次数:
0
构造一个空的顺序表 #define MAX_SIZE 100 typedef struct { int *address;//基地址 int length;//顺序表长度 int size;//顺序表总空间 }LIST; //创建一个空的顺序表 bool initList(LIST& list) { ...
分类:
其他好文 时间:
2021-06-25 16:40:30
阅读次数:
0
//1.contextmenu 禁止鼠标右键菜单 document.addEventListener('contextmenu',function(e){ e.preventDefault(); }); //2.禁止选中文字 selectstart document.addEventListener ...
分类:
其他好文 时间:
2021-06-25 16:33:50
阅读次数:
0
数字转换为中文大写方法 例如: int num = 725; string result=MoneyToCharacter(num); result输出结果为“柒佰叁拾伍元整” 1 private string MoneyToCharacter(decimal Money) 2 { 3 string ...
逐行入栈,排序后直接输出第k小的数据 # Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self. ...
分类:
编程语言 时间:
2021-06-25 16:32:21
阅读次数:
0