码迷,mamicode.com
首页 >  
搜索关键字:void 0    ( 62627个结果
Spring 动态代理万能工具类
Spring 动态代理万能工具类 public class ProxyInvocationHandler implements InvocationHandler { //代理谁 private Object target; public void setTarget(Object target) ...
分类:编程语言   时间:2021-06-02 11:41:10    阅读次数:0
c语言中统计字符串中数字字符出现的次数
c语言中统计字符串中数字字符出现的次数。 1、 #include <stdio.h> void int_count(char x[], int cnt[]) { int i; while(x[i]) { if(x[i] >= '0' && x[i] <= '9') { cnt[x[i] - '0'] ...
分类:编程语言   时间:2021-06-02 11:38:03    阅读次数:0
Laya 自制框架之窗口层级管理器
Laya 自制框架之窗口层级管理器 @author ixenos 2021年5月26日 1 package framework.manager 2 { 3 import laya.display.Sprite; 4 import laya.events.Event; 5 import laya.ui ...
分类:其他好文   时间:2021-06-02 11:36:35    阅读次数:0
自己总结的Java归并排序代码
看了网上的许多博客,然后自己总结了下,谢谢大神们的贡献 public class MergeSort { public void sort(int[] arr, int lo, int hi) { if (lo >= hi) return; int mid = lo + (hi - lo)/2; s ...
分类:编程语言   时间:2021-06-02 11:26:03    阅读次数:0
GetTickCount() 函数的作用和用法
DWORD GetTickCount(void); 1) 定义 For Release configurations, this function returns the number of milliseconds since the device booted, excluding any ti ...
分类:其他好文   时间:2021-06-02 11:21:18    阅读次数:0
杨辉三角
package array.test;public class Test2 { public static void main(String[] args) { //1. 声明并初始化二维数组 int[][] arr = new int[10][]; //2.给数组元素赋值 for (int i = ...
分类:其他好文   时间:2021-06-02 11:17:11    阅读次数:0
c语言中使用putchar显示字符串
c语言中使用putchar显示字符串 1、 #include <stdio.h> int put(char x[]) { int i = 0; while(x[i]) putchar(x[i++]); } int main(void) { char str[128]; printf("str: ") ...
分类:编程语言   时间:2021-06-02 11:15:10    阅读次数:0
c语言 9-7
1、 #include <stdio.h> void put(char x[], int n) { while(n-- > 0) printf(x); putchar('\n'); } int main(void) { char str[128]; int n; printf("str: "); s ...
分类:编程语言   时间:2021-06-02 11:11:52    阅读次数:0
C# 日期格式化显示
日期显示代码如下: 1 // <summary> 2 /// 日期时间显示改变 3 /// </summary> 4 private void InitDateTimePickerUp() 5 { 6 //开始时间 7 this.dateTimePicker_start.CustomFormat = ...
分类:Windows程序   时间:2021-06-02 10:53:58    阅读次数:0
asp.net core 构造函数依赖注入
依赖注入的好处就是低耦合也可以说是少写了重复的代码 构造函数依赖注入分为三步: 1、先创建一个接口 2、创建一个类,用于实现接口 3、到配置服务类(Startup)的 public void ConfigureServices(IServiceCollection services){ } 方法中注 ...
分类:Web程序   时间:2021-05-25 18:33:22    阅读次数:0
62627条   上一页 1 ... 24 25 26 27 28 ... 6263 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!