码迷,mamicode.com
首页 >  
搜索关键字:bus system    ( 50214个结果
unity中使用excel导入和通过excel打印
支持office和wps using ExcelDataReader; using OfficeOpenXml; using System; using System.Collections.Generic; using System.Data; using System.Diagnostics; ...
分类:编程语言   时间:2021-04-29 11:38:52    阅读次数:0
jvm源码解读--12 invokspecial指令的解读
先看代码 package com.zyt.jvmbook; public class Girl extends Person{ public Girl() { int a; } @Override public void sayHello() { System.out.println("girl s ...
分类:其他好文   时间:2021-04-28 11:53:27    阅读次数:0
新工具开源!一款双11养猫5亿用户的互动引擎
阿里巴巴历时2年自研开发的互动游戏引擎Eva.js正式开源,致力于让前端工程师更低成本的开发互动游戏,并已经在淘宝、天猫、支付宝、优酷、考拉、菜鸟、盒马等业务场景中使用。官网:https://eva.js.orgGithub: https://github.com/eva-engine/eva.js ...
分类:其他好文   时间:2021-04-28 11:47:49    阅读次数:0
一些简单的算法与数据结构
一些简单的算法与数据结构 稀疏数组 int chessArr1[][] = new int[11][11];//11*11的数组 int sum = 0; chessArr1[1][2] = 1;//设置两个值 chessArr1[2][3] = 2; //打印原数组 for(int[] row : ...
分类:编程语言   时间:2021-04-28 11:46:26    阅读次数:0
C#事件委托、观察者模式、消息中心、消息转发
using System; namespace EventDelegation { /// <summary> /// 事件参数类 /// </summary> public class EventDate : EventArgs { public int eventID; public int a ...
分类:Windows程序   时间:2021-04-27 14:31:21    阅读次数:0
HttpWebRequest的GET和POST方法
命名空间: System.Net,这是.NET创建者最初开发用于使用HTTP请求的标准类。使用HttpWebRequest可以让开发者控制请求/响应流程的各个方面,如 timeouts, cookies, headers, protocols。 GET请求就很简单易懂啦,如果需要传参,在URL末尾加 ...
分类:Web程序   时间:2021-04-26 13:25:50    阅读次数:0
命令行传参
命令行传参 package test4; public class CommandLineParam { public static void main(String[] args) { for (int i=0; i<args.length; i++){ System.out.println("a ...
分类:其他好文   时间:2021-04-26 13:20:29    阅读次数:0
设计模式之适配器模式
适配器模式 适配器模式结构图: 示例代码: // 已有登录类实现 public class PassportService { public String regist(String userName, String password){ System.out.println("注册成功====== ...
分类:其他好文   时间:2021-04-26 13:19:58    阅读次数:0
java 计算下面级数之和 1/3+3/5+5/7+...+97/99
代码实例图:package judgment;/** * 计算下面级数之和 * 1/3+3/5+5/7+...+97/99; */public class Judgment { public static void main(String[] args) { double num=0; for (i ...
分类:编程语言   时间:2021-04-26 13:07:27    阅读次数:0
python--python脚本中调用shell命令
文章目录python脚本调用shell命令os.system()os.popen()subprocess.call()subprocess.Popen()commandspython脚本传参数给shell命令python脚本获取命令行用户输入参数python传参数给shell命令python传参数给 ...
分类:编程语言   时间:2021-04-24 13:19:00    阅读次数:0
50214条   上一页 1 ... 26 27 28 29 30 ... 5022 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!