码迷,mamicode.com
首页 >  
搜索关键字:system    ( 49231个结果
【C#】窗体动画效果
通过调用API可以实现C#窗体的动画效果,主要调用user32.dll的行数AnimateWindow1、函数申明[System.Runtime.InteropServices.DllImport("user32")] private static extern bool AnimateWindow...
分类:Windows程序   时间:2015-08-19 10:39:33    阅读次数:166
C#经典面试题的坑
最近看了些简单的面试题,发现有几个地方不对劲啊。1、在 下面的例子里 using System; class A { public A() { PrintFields(); } ...
分类:Windows程序   时间:2015-08-19 09:22:35    阅读次数:251
Android API Guides –System Permissions
系统权限   声明: 本文由Gordon翻译 发布于www.dlvoice.com 欢迎转载,但请保留此声明 原文地址:http://developer.android.com/guide/topics/security/permissions.html          Android是一个特权分离的操作系统,运行在其上的应用都有一个特定的系统身份(Li...
分类:移动开发   时间:2015-08-19 08:14:12    阅读次数:147
公共字串计算
import java.util.Arrays; import java.util.Scanner; public class GetCommonString { public static void main(String[] args) { Scanner scan = new Scanner(System.in); String str1 = scan.next().toLo...
分类:其他好文   时间:2015-08-19 00:45:18    阅读次数:135
JAVA_SE基础——24.面向对象的内存分析
黑马程序员入学blog ... 接着上一章的代码: //车类 class Car{ //事物的公共属性使用成员变量描述。 String name; //名字的属性 String color; //颜色属性 int wheel; //轮子数 //事物的公共行为使用函数描述。 public void run(){ System.out.println...
分类:编程语言   时间:2015-08-19 00:40:36    阅读次数:139
用C#给程序加启动画面并只允许一个应用程序实例运行
1、 启动画面类: public class SplashForm : System.Windows.Forms.Form { private System.Windows.Forms.PictureBox pictureBox1; private Sys...
分类:Windows程序   时间:2015-08-19 00:31:29    阅读次数:255
CodeSoft随笔 批量连续打印,变量打印,codesoft条码
调用codeSoft的模板,实现批量连续打印。Code:制作标签1.lab.添加两个变量var0,var1。using LabelManager2; string strFile = System.Windows.Forms.Application.StartupPath.ToString() + ...
分类:其他好文   时间:2015-08-19 00:29:55    阅读次数:360
继承覆写调用随笔
public class JCFX{ static{//静态语句块最先执行 System.out.println( "ppp" ); } public static void main(String[] args){ A aaa = new A();//...
分类:其他好文   时间:2015-08-19 00:08:44    阅读次数:231
Genealogical tree POJ 2367【拓扑排序】
Genealogical tree Special Judge Problem Description The system of Martians' blood relations is confusing enough. Actually, Martians bud when they want and where they want. They gather t...
分类:编程语言   时间:2015-08-18 22:56:35    阅读次数:132
尼科彻斯定理
import java.util.Scanner; public class NicoChester { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int num = scan.nextInt(); checkNicoChester(num); } pri...
分类:其他好文   时间:2015-08-18 22:47:44    阅读次数:159
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!