码迷,mamicode.com
首页 >  
搜索关键字:public void __cdecl    ( 122950个结果
SignalR
发送 namespace SignalR.Client { public class ClientManage { public static readonly ClientManage Instance; private static IHubProxy proxy; static ClientM ...
分类:其他好文   时间:2021-06-02 11:56:01    阅读次数:0
图片按钮
package cn.rushangw.lesson05;import javax.swing.*;import java.awt.*;import java.net.URL;public class JButtonDemo01 extends JFrame { public JButtonDemo ...
分类:其他好文   时间:2021-06-02 11:54:15    阅读次数:0
调用QQ_Mail发送邮件
调用QQ_Mail发送邮件 代码案例: private void button1_Click(object sender, EventArgs e) { string myMaillAdress = ""; string myMaillPassword = ""; string myMaillMes ...
分类:其他好文   时间:2021-06-02 11:41:48    阅读次数:0
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
122950条   上一页 1 ... 48 49 50 51 52 ... 12295 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!