Classes and Interfaces
-
Nối tiếp nội dung phần 1, phần 2 cuốn sách "Bài tập Lập trình python" gồm có 7 chương với những nội dung cơ bản như sau: Bài 9: Module; bài 10: Dữ liệu kiểu string (xâu ký tự- gọi tắt là: xâu); bài 11: Dữ liệu kiểu file (tệp tin); bài 12: Đối tượng và lớp (object and class); bài 13: Bài tập mở đầu về đồ họa trong python; bài 14: Canvas trong python; bài 15: Giao diện đồ họa người dùng (graphic user interface - gui-).
105p runthenight07 14-02-2023 39 28 Download
-
Lecture Java programming language: Inheritance and Polymorphism has main content such as Object-Oriented programming, extending a class, implementing a subclass, polymorphism, abstract classes, interfaces.
11p lavender2022 22-04-2022 21 2 Download
-
Bài giảng "Lập trình Java - Chương 2: Lập trình hướng đối tượng ngôn ngữ Java" cung cấp cho người học các kiến thức: Kế thừa, final method and final class, abstract class and interface, tạo tài liệu Java doc,... Mời các bạn cùng tham khảo.
50p tamynhan3 10-07-2020 40 5 Download
-
Bài giảng Công nghệ Java - Bài 2.1: Servlet. Nội dung trình bày trong bài giảng này gồm có: Servlet and architecture, Interface Servlet and the Servlet Life Cycle, HttpServlet Class, HttpServletRequest Interface, HttpServletResponse Interface, Project Servlet in Eclipse, HTTP get Requests, HTTP get requests containing data, HTTP post requests, redirecting requests to other resources, welcome files.
41p shiwo_ding10 04-08-2019 35 2 Download
-
This chapter identify the constituents of an Enterprise JavaBean; define a bean class, EJB object, home interface, home object and deployment descriptors; define a stateless session bean; write programs related to stateless session beans; compile and deploy stateless session beans.
30p youcanletgo_04 15-01-2016 86 4 Download
-
Identify the product whose software requirements are specified in this document, including the revision or release number. Describe the scope of the product that is covered by this SRS, particularly if this SRS describes only part of the system or a single subsystem.
8p gaudinh2015 27-11-2015 79 5 Download
-
Introduction, Creating and Destroying Objects, Methods Common to All Objects, Classes and Interfaces,... are the main contents of the book Effective Java Second Edition, invite you to refer to additional documentation service needs learning and research. Hope this is useful references for you.
369p tbinhdev 05-09-2015 75 5 Download
-
Session Objectives: Identify the constituents of an Enterprise, JavaBean, define a bean class, EJB object, home interface, home object and deployment descriptors, define a stateless session bean, write programs related to stateless session beans, compile and deploy stateless session beans.
30p xaydungk23 27-10-2014 59 4 Download
-
Lecture Java: Chapter 7 software development activities, determining the classes and, objects that are needed for a program, the relationships that can exist among classes, the static modifier, writing interfaces, the design of enumerated type classes, method, design and method overloading, GUI design and layout managers.
159p hoahue91 24-07-2014 54 3 Download
-
Stream Input/Output (ASIO) is a computer sound card driver protocol for digital audio specified by Steinberg, providing a low-latency and high fidelity interface between a software application and a computer's sound card. Whereas Microsoft’s DirectSound is commonly used as an intermediary signal path for non-professional users
80p sakuraphuong 05-06-2013 73 5 Download
-
Object-Oriented Programming: Polymorphism..1..Outline 10.1 Introduction 10.2 Relationships Among Objects in an Inheritance Hierarchy 10.2.1 Invoking BaseClass Functions from DerivedClass Objects 10.2.2
92p sakuraphuong 04-06-2013 73 3 Download
-
Proxy class Hide implementation details of another class Knows only public interface of class being hidden Enables clients to use class’s services without giving access to class’s implementation. Used when class definition only uses pointer to another class Prevents need for including header file
79p sakuraphuong 04-06-2013 55 2 Download
-
Data abstraction refers to, providing only essential information to the outside word and hiding their background details ie. to represent the needed information in program without presenting the details. Data abstraction is a programming (and design) technique that relies on the separation of interface and implementation.
87p sakuraphuong 04-06-2013 56 3 Download
-
The unit in procedural programming is function, and unit in object-oriented programming is class Procedural programming concentrates on creating functions, while object-oriented programming starts from isolating the classes, and then look for the methods inside them. Procedural programming separates the data of the program from the operations that manipulate the data, while object-oriented programming focus on both of them
20p huanltgc00061 05-05-2013 41 2 Download
-
Object-Oriented Programming (OOP) Inheritance - form of software reusability New classes created from existing ones Absorb attributes and behaviors, and add in their own Override methods - redefine inherited methods Subclass inherits from superclass Direct superclass - subclass explicitly inherits Indirect superclass - subclass inherits from two or more levels up the class hierarchy Polymorphism Write programs in a general fashion to handle a wide variety of classes Abstraction - seeing the big picture...
62p huanltgc00061 05-05-2013 69 3 Download
-
Understanding the value propositions of J2EE Getting a big picture of J2EE architecture and platform Getting high-level exposure of APIs and Technologies that constitute J2EE You don't have to understand all the details Understanding why J2EE can be used for as a platform for development and deployment of web services
47p huanltgc00061 05-05-2013 58 4 Download
-
A technique for developing a program in which the solution is expressed in terms of objects -- self- contained entities composed of data and operations on that data. Programmer thinks about and defines the attributes and behavior of objects. Often the objects are modeled after real-world entities. Very different approach than function-based programming (like C).
68p huanltgc00061 05-05-2013 60 3 Download
-
The Java standard APIs are shown in HTML output at http://java.sun.com/j2se/1.4.2/docs/api/index.html. It’s generated from the documentation comments (doc comments). Documentation comments are special comments in the source code that are delimited by the /** ... */ delimiters. The JDK contains a tool named javadoc to generate HTML documentation from documentation comments in your source file. The javadoc utility extracts information for the following items Public classes and interfaces Public and protected methods Public and protected fields Packages...
20p huanltgc00061 05-05-2013 50 3 Download
-
Manipulating URLs URL is an acronym for Uniform Resource Locator and is a reference (an address) to a resource on the Internet. Sample structure of a URL. The resource name part may contain: host name, file
15p huanltgc00061 05-05-2013 50 4 Download
-
To Make an Interactive GUI Program To make an interactive GUI program, you need: Components buttons, windows, menus, etc. Events mouse clicked, window closed, button clicked, etc. Event listeners (interfaces) and event handlers (methods) listen for events to be trigged, and then perform actions to handle them
13p huanltgc00061 05-05-2013 53 5 Download