1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace DesignPatt ...
分类:
其他好文 时间:
2021-06-25 17:21:57
阅读次数:
0
LINUX samba配置共享文件目录 1.使用rpm -qa|grep samba 查看是否安装samba samba-winbind-clients-3.5.4-68.el6.x86_64 samba-3.5.4-68.el6.x86_64 samba-client-3.5.4-68.el6.x ...
Labelary Engine Documentation ZPL Command Support ZPL Extensions for Simulating Colored Label Stock Configuration via System Properties 1. ZPL Command ...
分类:
移动开发 时间:
2021-02-01 11:41:41
阅读次数:
0
void doPrint(); void doPrintPreview(); void printPreview(QPrinter *printer); void createPdf(); ui->setupUi(this); QAction *action_print = new QAction( ...
分类:
其他好文 时间:
2021-01-29 12:11:27
阅读次数:
0
1 package inter; 2 3 public abstract class Door { 4 abstract void openDoor(); 5 abstract void closeDoor(); 6 } 7 8 9 package inter; 10 11 public inter ...
分类:
编程语言 时间:
2020-11-25 12:40:00
阅读次数:
6
之前有博文测试了SELECT_PRINTER(),这个是临时默认打印机,前面的博文对比了如何设置windows默认打印机,如何设置临时默认打印机。以及临时默认打印指定后,在lodop和c-lodop的效果。 前面的博文链接(cnblog的):LODOP指定window默认打印机和临时默认打印机、 之 ...
分类:
其他好文 时间:
2020-07-28 17:08:04
阅读次数:
101
9.1、Lambda表达式 9.1.1、标准格式 (形式参数) -> {代码块} 9.1.2、使用前提 有一个接口并且接口中有且仅有一个抽象方法 9.1.3、常见应用 9.1.3.1、无参无返回值抽象方法练习 interface MyInter { void show(); } public cla ...
分类:
其他好文 时间:
2020-07-19 18:11:23
阅读次数:
80
1 var LODOP; 2 //获取打印机设备数,用于进行遍历 3 var count = LODOP.GET_PRINTER_COUNT();//获取打印机个数 4 window.onload=function print() { 5 for (var i = 0; i < count; i++ ...
分类:
其他好文 时间:
2020-07-17 19:26:20
阅读次数:
112
package com.company; public class Main { /** * 此处是一个在Main类中编写的一个接口, 用于演示lambda表达式的应用 * 函数式接口: 在接口中只有一个抽象方法的接口 */ interface Printer{ abstract void prin ...
分类:
其他好文 时间:
2020-06-26 14:30:58
阅读次数:
53