码迷,mamicode.com
首页 >  
搜索关键字:qt quick example    ( 27971个结果
Leetcode | Palindrome
Valid PalindromeGiven a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a pla...
分类:其他好文   时间:2014-05-12 16:27:07    阅读次数:332
Android SQLite的使用,基本的增删改查效果,以及ListView的效果显示
1 package com.example.sqlitetest; 2 3 import java.util.ArrayList; 4 import java.util.List; 5 import android.content.ContentValues; 6 import and...
分类:移动开发   时间:2014-05-02 20:35:24    阅读次数:540
亲试,Windows平台上使用Qt5.2.1编写Android
首先把工具都下载好:1. Qt for Android:http://qt-project.org/downloads2. Android NDKhttp://developer.android.com/tools/sdk/ndk/index.html64位可以下载第二个3.Apache Ant 1...
分类:移动开发   时间:2014-05-02 16:45:43    阅读次数:573
c# 语句关键字
1. yield它表明一个方法,操作符或者get选择器里会出现迭代。用yield return 同时返回每一个元素, 返回类型必须是IEnumerable, IEnumerable, IEnumerator, or IEnumerator.Example:public static IEnumera...
分类:其他好文   时间:2014-05-02 15:19:03    阅读次数:287
UVA 之401 - Palindromes
A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDEDCBA" is a palindrome because it is the same when the string is read from lef...
分类:其他好文   时间:2014-05-02 10:33:09    阅读次数:332
C# 修饰符
const : 指定字段或者本地变量不能被修改。readonly : 声明一个字段只能在定义的时候赋值或者在构造函数中赋值。( readonly 可以有不同的值,取决于构造函数的值。 const 是一个编译时的常量,readonly是一个运行时的常量,example:public static re...
分类:其他好文   时间:2014-05-02 09:26:05    阅读次数:304
Reverse Linked List II
Reverse a linked list from positionmton. Do it in-place and in one-pass.For example:Given1->2->3->4->5->NULL,m= 2 andn= 4,return1->4->3->2->5->NULL.No...
分类:其他好文   时间:2014-05-02 09:10:46    阅读次数:252
ubuntu 安装 OpenCv 及其Qt的开发环境配置
ubuntu安装opencv(1)安装编译opencv的环境sudo apt-get -y install build-essential cmake pkg-config(2)安装Image I/O库sudo apt-get -y install libjpeg62-dev sudo apt-ge...
分类:其他好文   时间:2014-05-01 22:42:45    阅读次数:451
Qt实现Windows远程控制
用Qt实现的Windows平台远程控制软件,包含源代码和编译后可以运行的程序,服务器端(被控端)为进程形式,客户端(主控端)为图形界面程序。客户端在连接时要设置服务器端的ip地址以及要显示的长度和宽度(不能超过服务器端屏幕分辨率)。...
分类:Windows程序   时间:2014-05-01 08:33:53    阅读次数:467
利用pdf2swf将PDF转换成SWF
将PDF转换成SWF可以使用SWFTools工具中的pdf2swf(http://www.swftools.org/),CSDN快速免积分下载地址XXX一个简单的将PDF文档转成SWF的用法:C:\SWFTools\pdf2swf example.pdf -o example.swf -f -T 91、首先下载安装,一直默认下一步即可。2、java代码import java.io.Buffered...
分类:其他好文   时间:2014-04-30 22:41:39    阅读次数:504
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!