码迷,mamicode.com
首页 >  
搜索关键字:static router    ( 49087个结果
Java基础00-循环语句7
1. for循环语句 1.1 循环结构 1.2 for循环语句的格式 执行流程图: 1.3 案例 public static void main(String[] args) { int count = 0; for (int i = 100; i < 1000; i++) { int ge = i ...
分类:编程语言   时间:2021-04-09 13:18:38    阅读次数:0
Java程序(数组扩容的尝试)
import java.util.Scanner; public class ArrayAdd { public static void main(String[] args) { int arr[] = {1,2,3}; //初始数组 System.out.println(" 初始数组情况 "); ...
分类:编程语言   时间:2021-04-09 13:01:24    阅读次数:0
Java实现一个简易计算器
做一个多功能计算器 欢迎使用计算器系统 int + int double + double 、 计算 n 的阶乘 计算 a的 n次方、 退出系统 import java.util.Scanner; public class Calculator { public static void main(S ...
分类:编程语言   时间:2021-04-09 12:50:24    阅读次数:0
std::move的理解
std::move 的定义 template <typename T> // typename表明type是一个类型 typename remove_reference<T>::type&& move(T&& t) { return static_cast<typename remove_refer ...
分类:其他好文   时间:2021-04-08 13:54:15    阅读次数:0
Vue页面跳转传递参数及接收
最近接触了vue项目,这里记录一下vue跳转到下一页面携带参数的两种方式。 项目地址:http://github.crmeb.net/u/long 典型应用场景:列表页跳转到详情页 一、配置路由 文件路径:src/router/config.php import Vue from 'vue' imp ...
分类:其他好文   时间:2021-04-08 13:33:42    阅读次数:0
c#使用多线程的几种方式
(1)不需要传递参数,也不需要返回参数 ThreadStart是一个委托,这个委托的定义为void ThreadStart(),没有参数与返回值。 class Program { static void Main(string[] args) { for (int i = 0; i < 30; i+ ...
分类:编程语言   时间:2021-04-08 13:20:08    阅读次数:0
数据拓展 面试拓展??
public class Demo04 { public static void main(String[] args) { //整数拓展 二进制0b 八进制0 十进制 十六进制0x int i1=10; int i2=010; int i3=0x11; System.out.println(i1) ...
分类:其他好文   时间:2021-04-08 13:03:44    阅读次数:0
利用反射编写泛型数组代码
public static Object copyOf(Object a,int newLength){ Class cl = a.getClass(); if(!cl.isArray()){ return null; } Class componentType = cl.getComponentT ...
分类:编程语言   时间:2021-04-08 12:57:40    阅读次数:0
10-2 "乞丐"
比较for和while 代码比较复制代码 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 public class HelloWorld { public static void main(String[] args) { //使用while打印0到4 int i =  ...
分类:其他好文   时间:2021-04-08 12:54:22    阅读次数:0
c# md5加密 ,tostring格式方法/字节数组元素的tostring
static void Main(string[] args) { GetMd5(); } public static void GetMd5() { string str = "123"; //创建md5对象,是静态方法。不能new MD5 mymd5 = MD5.Create(); //comp ...
分类:编程语言   时间:2021-04-07 11:23:31    阅读次数:0
49087条   上一页 1 ... 47 48 49 50 51 ... 4909 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!