摘要: 参考文章:1、https://blog.csdn.net/qq_36528311/article/details/88560409 2、https://blog.csdn.net/qq_24504591/article/details/81670766 阅读全文
posted @ 2024-07-10 11:10 Vena_12 阅读(1) 评论(1) 推荐(0) 编辑
摘要: 打印功能开发: 1)使用vuePlugsPrint.js 2)main.js 加入:import vuePlugsPrint from '@/utils/vuePlugsPrint' Vue.use(vuePlugsPrint); 3)创建打印模板页面:templatePrint.vue 4)使用页 阅读全文
posted @ 2023-10-19 10:44 Vena_12 阅读(1168) 评论(0) 推荐(0) 编辑
摘要: public class Test{ public static void main(String[] args){ int[] arr = {1,3,5,2,4,8,6}; for(int i = 0; i < arr.length -1; i++){ for(int j = 0; j < arr 阅读全文
posted @ 2020-04-27 19:45 Vena_12 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 例题: 求数列1,1,2,3,5,8,……第42位数。 public Class Test{ public static void main(String[] args){ System.out.println(func(42)); } public static int func(int n){ 阅读全文
posted @ 2020-04-27 19:26 Vena_12 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 单例模式是一种常用的软件设计模式,其定义是单例对象的类只能允许一个实例存在。要求类能够有返回对象一个引用(永远是同一个)和一个获得该实例的方法(必须是静态方法,通常使用getInstance这个名称)。单例的实现主要是通过以下两个步骤: 1、饿汉式(静态常量)[可用] public class Si 阅读全文
posted @ 2019-06-06 15:58 Vena_12 阅读(380) 评论(0) 推荐(0) 编辑
摘要: package Test_MoreThread; public class Thread_2 { JManager j = new JManager(); public static void main(String args[]){ new Thread_2().call(); } void ca 阅读全文
posted @ 2016-07-01 14:01 Vena_12 阅读(92) 评论(0) 推荐(0) 编辑
摘要: package test; import java.io.BufferedReader;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.InputStreamReader;impor 阅读全文
posted @ 2016-07-01 13:56 Vena_12 阅读(187) 评论(0) 推荐(0) 编辑
摘要: Functional testing - python selenium django - Source Code : from selenium import webdriverfrom selenium.webdriver.common.by import By from django.test 阅读全文
posted @ 2016-06-12 17:45 Vena_12 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-01-05 18:06 Vena_12 阅读(93) 评论(0) 推荐(0) 编辑