虫虫首页|资源下载|资源专辑|精品软件
登录|注册

types

  • Thinking in Java, 3rd ed. Revision 4.0 Preface Introduction 1: Introduction to Objects 2

    Thinking in Java, 3rd ed. Revision 4.0 Preface Introduction 1: Introduction to Objects 2: Everything is an Object 3: Controlling Program Flow 4: Initialization & Cleanup 5: Hiding the Implementation 6: Reusing Classes 7: Polymorphism 8: Interfaces & Inner Classes 9: Error Handling with Exceptions 10: Detecting types 11: Collections of Objects 12: The Java I/O System 13: Concurrency 14: Creating Windows & Applets 15: Discovering Problems 16: Analysis and Design A: Passing & Returning Objects B: Java Programming Guidelines C: Supplements D: Resources Index

    标签: Introduction Thinking Revision Preface

    上传时间: 2014-07-13

    上传用户:netwolf

  • We propose a technique that allows a person to design a new photograph with substantially less effo

    We propose a technique that allows a person to design a new photograph with substantially less effort. This paper presents a method that generates a composite image when a user types in nouns, such as “boat” and “sand.” The artist can optionally design an intended image by specifying other constraints. Our algorithm formulates the constraints as queries to search an automatically annotated image database. The desired photograph, not a collage, is then synthesized using graph-cut optimization, optionally allowing for further user interaction to edit or choose among alternative generated photos. An implementation of our approach, shown in the associated video, demonstrates our contributions of (1) a method for creating specific images with minimal human effort, and (2) a combined algorithm for automatically building an image library with semantic annotations from any photo collection.

    标签: substantially photograph technique propose

    上传时间: 2016-11-24

    上传用户:三人用菜

  • The DHRY program performs the dhrystone benchmarks on the 8051. Dhrystone is a general-performanc

    The DHRY program performs the dhrystone benchmarks on the 8051. Dhrystone is a general-performance benchmark test originally developed by Reinhold Weicker in 1984. This benchmark is used to measure and compare the performance of different computers or, in this case, the efficiency of the code generated for the same computer by different compilers. The test reports general performance in dhrystones per second. Like most benchmark programs, dhrystone consists of standard code and concentrates on string handling. It uses no floating-point operations. It is heavily influenced by hardware and software design, compiler and linker options, code optimizing, cache memory, wait states, and integer data types. The DHRY program is available in different targets: Simulator: Large Model: DHRY example in LARGE model for Simulation Philips 80C51MX: DHRY example in LARGE model for the Philips 80C51MC

    标签: general-performanc benchmarks Dhrystone dhrystone

    上传时间: 2016-11-30

    上传用户:hphh

  • The smspdulib library is intended for more transparent interaction with SMS PDU. This thought over h

    The smspdulib library is intended for more transparent interaction with SMS PDU. This thought over hierarchy of classes will allow you to create new classes for other types of short messages using the realized base functionality. At present, the following types of short messages are supported: status report, SMS (with long (large) SMS parts support)

    标签: interaction transparent smspdulib intended

    上传时间: 2013-12-23

    上传用户:小眼睛LSL

  • #include<stdio.h> #include<string.h> #include<limits.h> #include<unistd.h>

    #include<stdio.h> #include<string.h> #include<limits.h> #include<unistd.h> #include<sys/types.h> #define PROMPT_STRING "[myshell]$" #define QUIT_STRING "exit\n" static char inbuf[MAX_CANON] char * g_ptr char * g_lim extern void yylex() int main (void){ for( ){ if(fputs(PROMPT_STRING,stdout)==EOF) continue if(fgets(inbuf,MAX_CANON,stdin)==NULL) continue if(strcmp(inbuf,QUIT_STRING)==0) break g_ptr = inbuf g_lim = inbuf + strlen(inbuf) yylex() } return 0 }

    标签: include gt lt limits

    上传时间: 2016-12-31

    上传用户:colinal

  • The information in this book will show you how to create code that will run on all of the different

    The information in this book will show you how to create code that will run on all of the different Linux distributions and hardware types. It will allow you to understandhow Linux works and how to take advantage of its flexibility.

    标签: will information different create

    上传时间: 2017-02-12

    上传用户:日光微澜

  • These are P-Channel enhancement mode silicon gate power fi eld effect transistors. They are ad

    These are P-Channel enhancement mode silicon gate power fi eld effect transistors. They are advanced power MOSFETs designed, tested, and guaranteed to withstand a specifi ed level of energy in the breakdown avalanche mode of operation. All of these power MOSFETs are designed for applications such as switching regulators, switching converters, motor drivers, relay drivers and drivers for other high-power switching devices. The high input impedance allows these types to be operated directly from integrated circuits.

    标签: enhancement transistors P-Channel are

    上传时间: 2017-02-16

    上传用户:aeiouetla

  • Verilog Overview n Basic Structure of a Verilog Model n Components of a Verilog Module – Ports –

    Verilog Overview n Basic Structure of a Verilog Model n Components of a Verilog Module – Ports – Data types – Assigning Values and Numbers – Operators – Behavioral Modeling • Continuous Assignments • Procedural Blocks – Structural Modeling n Summary: Verilog Environment

    标签: Verilog Components Structure Overview

    上传时间: 2017-02-17

    上传用户:xinyuzhiqiwuwu

  • All of Java s Input/Output (I/O) facilities are based on streams, which provide simple ways to read

    All of Java s Input/Output (I/O) facilities are based on streams, which provide simple ways to read and write data of different types. Java provides many different kinds of streams, each with its own application. The universe of streams is divided into four large categories: input streams and output streams, for reading and writing binary data and readers and writers, for reading and writing textual (character) data. You re almost certainly familiar with the basic kinds of streams--but did you know that there s a CipherInputStream for reading encrypted data? And a ZipOutputStream for automatically compressing data? Do you know how to use buffered streams effectively to make your I/O operations more efficient? Java I/O, 2nd Edition has been updated for Java 5.0 APIs and tells you all you ever need to know about streams--and probably more.

    标签: facilities streams provide Output

    上传时间: 2013-12-17

    上传用户:6546544

  • Last week I posted an article on a simple C++ template class, XYDataArray, I used in my system devel

    Last week I posted an article on a simple C++ template class, XYDataArray, I used in my system development tool. The main purpose of this template class is to store and sort general data types. I needed to implement the same thing in Java, since the tool I developed has a compatible Java version. I checked the Java SDK documentation before writing my own code, and found that almost everything I needed is already there, like the C++ case.

    标签: XYDataArray template article posted

    上传时间: 2017-03-03

    上传用户:问题问题