码迷,mamicode.com
首页 >  
搜索关键字:public    ( 82854个结果
检测继承性,super的用法,方法的重写等
开门见山。在一片空白里,利用自己看的理论知识,进行逐一枚举并验证。只有当你能在一篇空白里利用所学,运用所思,尽可能的归纳并以某种形式表达出来,或是策划方案,或是代码,或是文章,这时才能在理解之上建立记忆,而不是在虚无之中制造懵懂。 //检测继承性,super的用法,方法的重写 public clas ...
分类:其他好文   时间:2021-06-05 18:22:04    阅读次数:0
C# 生成随机数
#region 生成随机字符串 /// <summary> /// 生成随机字符串 /// </summary> /// <param name="length">字符串的长度</param> /// <returns></returns> public static string CreateRa ...
分类:Windows程序   时间:2021-06-05 18:13:35    阅读次数:0
C# Unicode 转中文
#region Unicode 转中文 /// <summary> /// Unicode 转中文 /// </summary> /// <param name="text"></param> /// <returns></returns> public static string UnicodeT ...
分类:Windows程序   时间:2021-06-05 18:12:53    阅读次数:0
JavaSe - 基础 - 关于static代码块
经常忘记 static 代码块 反正如果你有调用(进入到) 他的类中他就执行.. a.java: public class a { public static void main(String[] args) { b.fun(); } } b.java: public class b { stati ...
分类:编程语言   时间:2021-06-05 18:04:20    阅读次数:0
java中交换两个变量的值有哪几种方法
方法: 1、定义临时变量 2、不用定义临时变量 3、使用位运算符 public class SwapTest { public static void main(String[] args) { int num1 = 10; int num2 = 20; //方式一:定义临时变量的方式 //推荐使用 ...
分类:编程语言   时间:2021-06-05 18:02:27    阅读次数:0
JavaWeb之Response文件下载(中文编码问题)
很久以前遇到过这样的问题,最近再次遇到,做个记录。核心代码如下(这里采用Excel导出是EasyPoi): @RequestMapping("/downloadPost") public void downloadPost(HttpServletResponse response) { try { ...
分类:编程语言   时间:2021-06-05 17:50:20    阅读次数:0
opcenter8 使用webapi+Angular.js+bootstrap 开发
opcenter8的开发方式跟之前的camstar7版本差不多,自带的UI开发上手难度大,调试困难,开发周期变得很长,所以此文章再不添加任何第三方插件的情况下使用系统自带的Angular.js+bootstrap做开发 1.添加WEBAPI支持 添加WebApiConfig.cs public st ...
分类:Windows程序   时间:2021-06-05 17:46:08    阅读次数:0
2.0注册界面
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Data.SqlClient; 6 using System. ...
分类:其他好文   时间:2021-06-05 17:38:06    阅读次数:0
给DataGrid列头绑定时间
WPF public void DataGridBinDingTime(){ List<string> times = new List<string>(); string time = _startTime.SelectedValue.ToString(); string[] arr = time ...
分类:其他好文   时间:2021-06-05 17:34:23    阅读次数:0
future应用相关
1 package com.future; 2 3 import java.util.concurrent.*; 4 5 6 public class FDemo { 7 public static final ExecutorService service = Executors.newSingl ...
分类:其他好文   时间:2021-06-04 19:55:49    阅读次数:0
82854条   上一页 1 ... 28 29 30 31 32 ... 8286 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!