Catherine_zhilin

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 33 下一页

2018年5月23日

摘要: 简介:https://baike.baidu.com/item/SQLite/375020 sqlite教程:http://www.runoob.com/sqlite/sqlite-tutorial.html SQLite 有用的资源 本教程列出了 SQLite 数据库网站和书籍。 为什么要用 SQ 阅读全文
posted @ 2018-05-23 11:06 kkkshiki 阅读(253) 评论(0) 推荐(0)

2018年5月18日

摘要: 不带生产者和消费者之间的通信: 1 2 class SynchronizedMethods{ 3 int d; 4 synchronized void getDate() { 5 System.out.println("Got data:"+d); 6 } 7 synchronized void p 阅读全文
posted @ 2018-05-18 16:31 kkkshiki 阅读(185) 评论(0) 推荐(0)

2018年5月17日

摘要: 示例代码: 多线程,并设置优先级: 1 package signal; 2 3 4 class A extends Thread{ 5 public void run(){ 6 for(int i=1;i<=3;i++){ 7 System.out.println("a" +i); 8 } 9 } 阅读全文
posted @ 2018-05-17 20:47 kkkshiki 阅读(165) 评论(0) 推荐(0)

2018年5月11日

摘要: 方法一: 1 package C5; 2 3 import java.awt.Color; 4 import java.awt.Font; 5 6 import javax.swing.JFrame; 7 import javax.swing.JLabel; 8 import javax.swing 阅读全文
posted @ 2018-05-11 15:13 kkkshiki 阅读(789) 评论(0) 推荐(0)

2018年5月10日

摘要: 示例代码: 1 <html> 2 <body> 3 <iframe name="HeaderFrame" src =" head.html"width ="91%" heigth="100"></iframe> 4 <iframe name="NavigationFrame" src=" left. 阅读全文
posted @ 2018-05-10 09:26 kkkshiki 阅读(155) 评论(0) 推荐(0)

2018年5月9日

摘要: Basic Structure of a table : 1.Body 2.Header 3.Footer 示例代码: 1 <html> 2 <body> 3 <table cellpadding="0"> 4 <thead> 5 <tr> 6 <td>学号</td><td>姓名</td><td>性 阅读全文
posted @ 2018-05-09 11:37 kkkshiki 阅读(185) 评论(0) 推荐(0)

2018年5月8日

摘要: 1.transitions 示例代码: 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 div{ 6 width:200px; 7 height: 200px; 8 background: red; 9 -webkit-transition:width 阅读全文
posted @ 2018-05-08 08:36 kkkshiki 阅读(143) 评论(0) 推荐(0)

2018年5月7日

摘要: 1.C语言sprintf()函数:将格式化的数据写入字符串 sprintf()最常见的应用之一莫过于把整数打印到字符串中,如: sprintf(s, "%d", 123); //把整数123打印成一个字符串保存在s中 sprintf(s, "%8x", 4567); //小写16进制,宽度占8个位置 阅读全文
posted @ 2018-05-07 18:08 kkkshiki 阅读(203) 评论(0) 推荐(0)

2018年5月4日

摘要: 题目: 1.数制转换(非负数十进制整数转换为八进制数) 方法一:非递归实现 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 /* run this program using the console pauser or add your own getc 阅读全文
posted @ 2018-05-04 16:32 kkkshiki 阅读(283) 评论(0) 推荐(0)

摘要: 1.Using the Comparable Interface 示例代码: 测试结果: 1.Using the Comparator Interface 示例代码: 测试结果: 阅读全文
posted @ 2018-05-04 14:03 kkkshiki 阅读(133) 评论(0) 推荐(0)

上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 33 下一页