E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
fundamentals
Application
Fundamentals
--Processes and Threads(进程与线程)
Processes and Threads--进程与线程 When the first of an application's components needs to be run, Android starts a Linux process for it with a single thread of execution. By default, all components of th
weiweirenhong
·
2010-08-27 09:00
多线程
thread
android
linux
网络应用
Application
Fundamentals
--Processes and Threads(进程与线程)
Processes and Threads--进程与线程 When the first of an application's components needs to be run, Android starts a Linux process for it with a single thread of execution. By default, all components of th
weiweirenhong
·
2010-08-27 09:00
多线程
thread
android
linux
网络应用
Application
Fundamentals
--Starting tasks
Starting tasks An activity is set up as the entry point for a task by giving it an intent filter with "android.intent.action.MAIN" as the specified action and "android.intent.categor
weiweirenhong
·
2010-08-27 09:00
android
UP
Application
Fundamentals
--Starting tasks
Starting tasks An activity is set up as the entry point for a task by giving it an intent filter with "android.intent.action.MAIN" as the specified action and "android.intent.categor
weiweirenhong
·
2010-08-27 09:00
android
UP
Application
Fundamentals
--Clearing the stack(堆栈清理)
Clearing the stack--堆栈清理 If the user leaves a task for a long time, the system clears the task of all activities except the root activity. When the user returns to the task again, it's as the user
weiweirenhong
·
2010-08-27 09:00
android
idea
Go
Application
Fundamentals
--Clearing the stack(堆栈清理)
Clearing the stack--堆栈清理 If the user leaves a task for a long time, the system clears the task of all activities except the root activity. When the user returns to the task again, it's as the user
weiweirenhong
·
2010-08-27 09:00
android
idea
Go
Application
Fundamentals
--Launch modes-启动模式
Launch modes-启动模式 There are four different launch modes that can be assigned to an <activity> element's launchMode attribute:翻译:activity元素的launchMode属性可以设定为以下四种值: "standard" (the
weiweirenhong
·
2010-08-27 09:00
C++
c
android
C#
Application
Fundamentals
--Launch modes-启动模式
Launch modes-启动模式 There are four different launch modes that can be assigned to an <activity> element's launchMode attribute:翻译:activity元素的launchMode属性可以设定为以下四种值: "standard" (the
weiweirenhong
·
2010-08-27 09:00
C++
c
android
C#
Application
Fundamentals
--Affinities and new tasks
Affinities and new tasks By default, all the activities in an application have an affinity for each other — that is, there's a preference for them all to belong to the same task. However, an indivi
weiweirenhong
·
2010-08-27 08:00
android
Application
Fundamentals
--Affinities and new tasks
Affinities and new tasks By default, all the activities in an application have an affinity for each other — that is, there's a preference for them all to belong to the same task. However, an indivi
weiweirenhong
·
2010-08-27 08:00
android
Application
Fundamentals
--Activities and Tasks
Activities and Tasks As noted earlier, one activity can start another, including one defined in a different application. Suppose, for example, that you'd like to let users display a street map of s
weiweirenhong
·
2010-08-27 08:00
android
Application
Fundamentals
--Activities and Tasks
Activities and Tasks As noted earlier, one activity can start another, including one defined in a different application. Suppose, for example, that you'd like to let users display a street map of s
weiweirenhong
·
2010-08-27 08:00
android
Application
Fundamentals
--Intent 过滤器
Intent 过滤器 Intent 对象可以显式指定目标组件.一旦显式指定了目标组件,Android 操作系统直接根据指定的目标组件名在AndroidManifest.xml文件中查找该组件声明,找到之后立即激活该组件。如果Intent 对象没有显式指定目标组件, Android 操作系统必须从AndroidManifest.xml文件中的所有intent过滤器中定位到一个最佳匹配的inte
weiweirenhong
·
2010-08-27 08:00
android
xml
UP
Application
Fundamentals
--Intent 过滤器
Intent 过滤器 Intent 对象可以显式指定目标组件.一旦显式指定了目标组件,Android 操作系统直接根据指定的目标组件名在AndroidManifest.xml文件中查找该组件声明,找到之后立即激活该组件。如果Intent 对象没有显式指定目标组件, Android 操作系统必须从AndroidManifest.xml文件中的所有intent过滤器中定位到一个最佳匹配的inte
weiweirenhong
·
2010-08-27 08:00
android
xml
UP
Application
Fundamentals
--The manifest file
The manifest file Android启动应用程序组件之前,首先必须知道被启动的应用中都有哪些组件.所以应用程序需要在manifest文件中声明该应用都绑定了什么组件, 在应用程序对应的.apk文件中同时也包含了应用程序代码、文件以及相关的资源。 manifest是一个 XML 文件,总是被命名为AndroidManifest.xml,其中,并非仅仅是声明组件,同时该文件中
weiweirenhong
·
2010-08-27 08:00
android
xml
Application
Fundamentals
--The manifest file
The manifest file Android启动应用程序组件之前,首先必须知道被启动的应用中都有哪些组件.所以应用程序需要在manifest文件中声明该应用都绑定了什么组件, 在应用程序对应的.apk文件中同时也包含了应用程序代码、文件以及相关的资源。 manifest是一个 XML 文件,总是被命名为AndroidManifest.xml,其中,并非仅仅是声明组件,同时该文件中
weiweirenhong
·
2010-08-27 08:00
android
xml
Application
Fundamentals
--Activating components: intents(组件的激活)
Activating components: intents----组件的激活 Content providers are activated when they're targeted by a request from a ContentResolver. The other three components — activities, services, and broadcast r
weiweirenhong
·
2010-08-27 08:00
android
UP
Application
Fundamentals
--Activating components: intents(组件的激活)
Activating components: intents----组件的激活 Content providers are activated when they're targeted by a request from a ContentResolver. The other three components — activities, services, and broadcast r
weiweirenhong
·
2010-08-27 08:00
android
UP
Application
Fundamentals
--Application Components(应用组件)
Application Components-应用组件 A central feature of Android is that one application can make use of elements of other applications (provided those applications permit it). For example, if your applica
weiweirenhong
·
2010-08-27 08:00
android
linux
sqlite
网络应用
音乐
Application
Fundamentals
--Application Components(应用组件)
Application Components-应用组件 A central feature of Android is that one application can make use of elements of other applications (provided those applications permit it). For example, if your applica
weiweirenhong
·
2010-08-27 08:00
android
linux
sqlite
网络应用
音乐
Application
Fundamentals
前言
Android applications are written in the Java programming language. The compiled Java code — along with any data and resource files required by the application — is bundled by the aapt too
weiweirenhong
·
2010-08-26 16:00
虚拟机
android
linux
mobile
Application
Fundamentals
前言
Android applications are written in the Java programming language. The compiled Java code — along with any data and resource files required by the application — is bundled by the aapt too
weiweirenhong
·
2010-08-26 16:00
android
linux
虚拟机
mobile
BW顾问需要的技能
ArchitectureofSAPR/3Programs.Basicknowledgeofdatawarehousing,tablesandstructureDDICknowledge
Fundamentals
ofSAPNetweaverSAPR3
asdfak
·
2010-08-20 17:00
Security
application
SAP
authorization
templates
transformation
Java & OO
Fundamentals
works
1. Sandwich Delivery Service 1.1. Situation 1.1.1. Improvements 2. School Management 2.1. Associations 2.2. Entities 2.3. Implementation 2.4. Queries 2.5. Money - Optional 3. Lists and Arrays
sakakokiya
·
2010-08-12 10:00
java
OO
Oracle CBO 成本优化器 文档
OracleCBO成本优化器文档Oracle,CBO,成本优化器,文档costbasedoracle
fundamentals
.part1.rar(1.91MB)下载次数:09 分钟前costbasedoracle
fundamentals
.part2
inthirties
·
2010-08-11 09:00
Oracle CBO 成本优化器 文档
OracleCBO成本优化器文档Oracle,CBO,成本优化器,文档costbasedoracle
fundamentals
.part1.rar(1.91MB)下载次数:09分钟前costbasedoracle
fundamentals
.part2
buliedian
·
2010-08-11 09:00
oracle
Android-Application Fundamental-应用程序基础-中文翻译校正版
应用程序基础|AndroidDevelopers 原文标题:Application
Fundamentals
原文链接:http://developer.android.com/guide/topics
jackyu613
·
2010-08-10 20:00
android
活动
service
application
音乐
任务
耶鲁大学开放课程:《聆听音乐》第3课
第3课 Rhythm:
Fundamentals
节奏:音乐的基础 音乐记谱法是西方所特有的。音乐记谱法有两大优势。
小明哥
·
2010-08-06 17:00
音乐
Java & OO
Fundamentals
Platform Define the following terms: bytecode, JVM. Differentiate the purpose of the JDK and the JRE. Associate the terms Java SE and Java EE to a correct given definition. Identify the f
sakakokiya
·
2010-08-05 17:00
java
jvm
jdk
OO
Access
Scrum
Fundamentals
Understanding Scrum Scrum Roles Recognize the different roles in the Scrum team: Artifacts and Tools Know the purpose and how to use the three Scrum artifacts: Flow and meetings Recognize how the Scru
sakakokiya
·
2010-08-05 17:00
Scrum
Java & OO
Fundamentals
Platform Define the following terms: bytecode, JVM. Differentiate the purpose of the JDK and the JRE. Associate the terms Java SE and Java EE to a correct given definition. Identify the f
sakakokiya
·
2010-08-05 17:00
java
jvm
jdk
OO
Access
Spring Core
Fundamentals
Dependency Injection Understand what Spring is useful for and state what Spring Core is meant to do Write XML bean definition to inject values and collaborators via setters Write XML bean de
sakakokiya
·
2010-08-05 17:00
spring
AOP
xml
bean
jpa
Java & OO
Fundamentals
1. Beginning Java 1.1. The Java Platform 1.1.1. History 1.1.2. JVM / JRE 1.2. Getting Started 1.2.1. Setup JDK & Eclipse 1.2.1.1. JDK 1.2.1.2. Eclipse 1.2.2. Hello World 2. Language Basic
sakakokiya
·
2010-08-05 09:00
java
eclipse
jvm
jdk
OO
Java Generics FAQs - Type Parameters
TypeParameters
Fundamentals
Whatisatypeparameter?
calvinlyc
·
2010-07-29 04:00
java
thread
F#
Access
UP
《实践与思考》系列连载(2)—— 第一部分 我们走在.NET的实践征途上 序言
我计划主要会包括的内容是:1.Framework
Fundamentals
(基本数据结构和原理)2.InputOutput(输入输出系统)3.Searching,ModifyingandEncodingText
chen_xizhang
·
2010-07-19 08:00
.net
generics
serialization
Microsoft
application
globalization
Application
Fundamentals
一、android应用程序是用java语言编写的。二、编译后的java代码、资源、文件被aapt tool( Android Asset Packaging Tool)打包成.apk(android package)包。三、.apk包是在android中发布程序使用的。一个应用程序应被打包成一个apk文件。四、默认情况下,一个应用程序运行在一个单独的jvm中,而每个jvm都作为一个单独的linux
isiqi
·
2010-07-12 08:00
jvm
android
linux
sqlite
OS
swing学习 - GRAPHICS
FUNDAMENTALS
Rendering: java2D的呈现主要有三步 1.取得Graphics(Graphics2D)对象 2.设置Griaphics对象的属性 3.通过Graphics对象画图 取得Graphics对象 大多数情况下我们不
netliving
·
2010-06-27 17:00
算法
swing
swing学习 - GRAPHICS
FUNDAMENTALS
Rendering: java2D的呈现主要有三步 1.取得Graphics(Graphics2D)对象 2.设置Griaphics对象的属性 3.通过Graphics对象画图 取得Graphics对象 大多数情况下我们不
netliving
·
2010-06-27 17:00
算法
swing
swing学习笔记 - Swing Rendering
Fundamentals
swing的渲染原理主要包括了Event,Painting,Rendering,DoubleBuffering,Threading,逐一介绍一下Event: 事件在程序中可以有本地系统引发,或者java程序自己引发,或者应用程序自己构建,所有的事件都有事件队列EventQueue进行统一维护和分发,他是一个单线程的,叫做EDT,后面的Threading中将介绍。他是一个非常重要的机制,是保障
netliving
·
2010-06-25 17:00
jdk
thread
swing
qt
WinForm
swing学习笔记 - Swing Rendering
Fundamentals
swing的渲染原理主要包括了Event,Painting,Rendering,DoubleBuffering,Threading,逐一介绍一下Event: 事件在程序中可以有本地系统引发,或者java程序自己引发,或者应用程序自己构建,所有的事件都有事件队列EventQueue进行统一维护和分发,他是一个单线程的,叫做EDT,后面的Threading中将介绍。他是一个非常重要的机制,是保障
netliving
·
2010-06-25 17:00
jdk
thread
swing
qt
WinForm
Type
Fundamentals
There are three fundamental kind of type members: fields, methods and nested types. The field of a type control how memory is allocated. The CLR will allocate memory for static field once: when the t
xiechangming
·
2010-06-25 10:00
C++
c
C#
《实践与思考》系列连载(2)—— 第一部分 我们走在.NET的实践征途上 序言
我计划主要会包括的内容是:1.Framework
Fundamentals
(基本数据结构和原理)2.InputOutput(输入输出系统)3.Searching,ModifyingandEncodingText
·
2010-06-23 07:00
.net
《实践与思考》系列连载(2)—— 第一部分 我们走在.NET的实践征途上 序言
我计划主要会包括的内容是:1.Framework
Fundamentals
(基本数据结构和原理)2.InputOutput(输入输出系统)3.Searching,ModifyingandEncodingText
chen_xizhang
·
2010-06-22 23:00
pplication
Fundamentals
——应用程序基础知识
Application
Fundamentals
——应用程序基础知识Keyclasses——关键类ActivityServiceBroadcastReceiverContentProviderIntentInthisdocument
wapysun
·
2010-06-04 20:00
应用程序
Chapter 1 Road Maps to Reading / Database Independence vs Dependence
Concepts Guide New Features Guide Required Reading for Developers Application Developers Guid(
Fundamentals
mathfox
·
2010-06-01 16:00
sql
performance
Android核心分析(20)----Android应用程序框架之无边界设计意图
Android应用程序框架1无边界设计理念 Android的应用框架的外特性空间的描述在SDK文档(http://androidappdocs.appspot.com/guide/topics/
fundamentals
.html
maxleng
·
2010-05-23 22:00
框架
android
service
Microsoft
application
Components
Android - Application
Fundamentals
.
应用程序基础ApplicationComponentsActivatingcomponents:intentsShuttingdowncomponentsThemanifestfileIntentfiltersActivitiesandTasksAffinitiesandnewtasksLaunchmodesClearingthestackStartingtasksProcessesandThre
lmhit
·
2010-05-10 19:00
Microsoft SQL Server 2008 SQL
Fundamentals
(Note one-Query metadata)
Summary1. Catalogview:· sys.tables· sys.columns2. Scheam:INFORMATION_SCHEAM· ~.tables· ~.columns3. StoredProcedure· Sys.sp_tables· Sys.sp_hel
zfsCSD
·
2010-05-10 13:00
DB2认证考试大纲
mod=space&uid=19鉴于CSDN无故删除博文,本博客不再更新,暂时迁至http://www.db365.netDB2认证考试目标相关考试科目730DB29
Fundamentals
731DB29DBAforLinux
zhaojianmi1
·
2010-04-22 16:00
linux
windows
unix
db2
IBM
database
Java与C++的浅层次区别
本文总结自CoreJava
Fundamentals
一书,不断更新。这里只涉及表象,暂不探讨两种语言更深层次上的区别以及运行机制方面的差异。
FlyingIceCS
·
2010-04-16 23:00
java
C++
c
String
存储
Primitive
上一页
22
23
24
25
26
27
28
29
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他