搜索结果
查询Tags标签: prints,共有 4条记录-
c++的#和##的用法
#include <iostream>using namespace std; #define WARN_IF(EXP) if(EXP) cerr << #EXP << endl;#define paster( n ) cout << "token" << #n << " = " << n << endl;#define _CONS(a, b) int(a##+#…
2022/2/19 20:18:00 人评论 次浏览 -
C#获取本地所有打印机名称
引用:using System.Drawing.Printing; 实现代码: List<string> PrintS = new List<string>(); foreach (string sPrint in PrinterSettings.InstalledPrinters)//获取所有打印机名称 { PrintS.Add(sPrint); …
2022/1/26 11:04:28 人评论 次浏览 -
003Window约等效Linux列表
Windows commandUnix commandNotesarp arpassign ln Create a file linkassign ln -s On Unix, a directory may not have multiple links, so instead a symbolic link must be created with ln -s.assoc fileat atbatchcronattrib chownchmod Sets ownership on files a…
2021/5/5 7:29:09 人评论 次浏览 -
复习第三天:JavaSE之方法
/*** 方法:实现特定功能的一串代码,可反复使用* 例:main方法*/public class Test2{public static void main(String[] args) {//1、简单的方法调用/* System.out.println("床前明月光");prints();System.out.println("疑是地上霜");prints();Sy…
2021/4/16 22:26:11 人评论 次浏览