摘要:
QT如何设置应用程序的图标 准备:.ico格式的图片,可以选择任意其他图片格式的一张图片用格式工厂转换成.ico图片 例如选用的图片是Application.ico 把图片放到工程目录下 在工程目录下新建文件"Application.rc",内容是:IDI_ICON1 ICON DISCARDABLE "Application.ico" 在工程文件最后添加:RC_FILE += ... 阅读全文
摘要:
I Shell下命令行程序CLP I .help II 命令的简写 .e = .quit .s .h = .help II 数据库管理 A 创建数据库 1 CREATE TABLE id_name(id integer,name text); 2 列默认设置为自动增长属性 B 数据显示格式 1 .mode 命令 2 命令有: ... 阅读全文
摘要:
第一个程序的实现的最终功能是: 点击"正确"或者"错误"会得到一个是否正确的提示。 直接上效果图。 此次涉及代码编写的文件有4个: package com.Kyleapp2; import android.support.v7.app.ActionBarActivity; import android.os.Bundle; import android.view... 阅读全文
摘要:
package snippet; import intfa.Person; import intfa.soninfo.Son;; public class Test02{ public static void main(String[] args) { Person a = new Person(); ... 阅读全文
摘要:
abstract class Animal{ public abstract void eat(); } class Dog extends Animal{ public void eat(){ System.out.println("狗吃骨头"); } } ... 阅读全文
摘要:
//多态的应用 class Animal{ public void eat(){ } } class Dog extends Animal{ public void eat(){ System.out.println("狗吃骨头"); } } class Cat exte... 阅读全文
摘要:
class Test02 { public static void main(String args[]){ final int x; x = 100; //x = 200; System.out.println(x); ... 阅读全文
摘要:
class Animal{ public final void eat(){ System.out.println("吃"); } } class Dog extends Animal{ public void eat(){ System.out... 阅读全文
摘要:
class Base{ int x = 1; static int y = 2; String name(){ return "mother"; } static String staticname(){ return "... 阅读全文
摘要:
// 静态方法不能被覆盖 /*class Super{ static String name(){ return "mother"; } } class Test02{ public static void main(String[] args){ Super s3 = new Super()... 阅读全文