点击切换搜索课件文库搜索结果(265)
文档格式:PPT 文档大小:83.5KB 文档页数:16
一、选择题: 1当说明一个结构变量时,系统分配给它的内存一般是a a.各成员所需内存量的总和 b.结构中第一个成员所需内存量 c.成员中占内存量最大的成员所需的容量 d.结构中最后一个成员所需内存量
文档格式:PPT 文档大小:1.38MB 文档页数:65
⚫ To distinguish simple GUI components (§11.2). ⚫ To describe the Java GUI API hierarchy (§11.3). ⚫ To create user interfaces using frames, panels, and simple UI components (§11.4). ⚫ To understand the role of layout managers (§11.5). ⚫ To use the FlowLayout, GridLayout, and BorderLayout managers to layout components in a container (§11.5). ⚫ To specify colors and fonts using the Color and Font classes (§11.6-11.7). ⚫ To use JPanel as subcontainers (§11.8). ⚫ To paint graphics using the paintComponentmethod on a panel (§11.9). ⚫ To draw strings, lines, rectangles, ovals, arcs, and polygons using the drawing methods in the Graphics class (§11.9). ⚫ To center display using the FontMetricsClass (§11.10). ⚫ To develop a reusable component MessagePanel to display a message on a panel (§11.11). ⚫ To develop a reusable component StillClock to emulate an analog clock (§11.12 Optional)
文档格式:PPT 文档大小:88KB 文档页数:3
一、插值问题 给定函数f(x)在区间a,b]上的一组n+1个不同的点 a≤x
文档格式:PPT 文档大小:254KB 文档页数:21
2.5字符型数据 2.5.1字符常量 用一对单引号括起来的单个字符。如a',A,二者不一样此外,以\\\\开头后接一个字符或n个字符代表了种特殊字符常量。—转义字符
文档格式:DOC 文档大小:40KB 文档页数:4
1.1编写目的 说明编写这份详细设计说明书的目的,指出预期的读者。 1.2背景 说明: a.待开发软件系统的名称; b.本项目的任务提出者、开发者、用户和运行该程序系统的计算中心。 1.3定义 列出本文件中用到专门术语的定义和外文首字母组词的原词组。 1.4参考资料
文档格式:PPT 文档大小:495KB 文档页数:76
To develop a subclass from a superclass through inheritance (§8.2). To invoke the superclass’s constructors and methods using the super keyword (§8.3). To override methods in the subclass (§8.4). To explore the useful methods (equals(Object), hashCode(), toString(), finalize(), clone(), and getClass()) in the Object class (§8.5, §8.11 Optional). To comprehend polymorphism, dynamic binding, and generic programming (§8.6). To describe casting and explain why explicit downcasting is necessary (§8.7). To understand the effect of hiding data fields and static methods (§8.8 Optional). To restrict access to data and methods using the protected visibility modifier (§8.9). To declare constants, unmodifiable methods, and nonextendable class using the final modifier (§8.10). To initialize data using initialization blocks and distinguish between instance initialization and static initialization blocks (§8.12 Optioanl)
文档格式:DOC 文档大小:812KB 文档页数:150
《Visual Basic 程序设计》 《Visual Basic 程序设计》实验 《高等数学 B》 《线性代数 A》 《概率论与数理统计 B》 《政治经济学》 《微观经济学 A》 《宏观经济学 A》 《外贸会计》 《统计学 A》 《财政学》 《国际贸易》 《货币银行学》 《国际金融》 《学科前沿专题》 《经济思想史》 《经济法 B》 《国际贸易实务》 《外贸英语》 《外贸函电》 《国际商法》 《外贸实务模拟操作》 《经济数据分析》 《国际市场营销》 《国际商务谈判》 《国际结算》 《国际货物运输与保险》 《报关实务》 《国际贸易单证》 《国际贸易单证》实训 《WTO 概论》 《世界经济概论》 《世界市场行情》 《国际贸易地理》 《国际服务贸易与技术贸易》 《国际贸易实务案例分析》 《计量经济学》 《西方经济学流派》 《经济学经典著作导读》 《企业管理》 《国际物流管理》 《国际商务》 《投资学》 《保险学》 《跨国公司与国际直接投资》 《认识实习》 《基础实训》 《专业实训》 《业务实习》 《学年论文》 《综合实训》 《毕业实习》 《毕业论文》
文档格式:PPT 文档大小:757KB 文档页数:80
⚫ To understand objects and classes and use classes to model objects (§6.2). ⚫ To learn how to declare a class and how to create an object of a class (§6.3). ⚫ To understand the roles of constructors and use constructors to create objects (§6.3). ⚫ To use UML graphical notations to describe classes and objects (§6.3). ⚫ To distinguish between object reference variables and primitive data type variables (§6.4) ...... ⚫ To understand the difference between instance and static variables and methods (§6.10). ⚫ To determine the scope of variables in the context of a class (§6.11). ⚫ To use the keyword this as the reference to the current object that invokes the instance method (§6.12). ⚫ To store and process objects in arrays (§6.13). ⚫ To apply class abstraction to develop software (§6.14). ⚫ To declare inner classes (§6.17)
文档格式:PDF 文档大小:1.6MB 文档页数:85
《应用统计学》 《经管类高等数学选讲(1)》 《经管类高等数学选讲(2)》 《Python 语言程序设计》 《微积分 B》 《应用工程数学 B》 《微积分 A》 《机电设备》 《跨境电商实战》 《商业智能数据分析》
文档格式:PPT 文档大小:494.5KB 文档页数:41
⚫ To know what is exception and what is exception handling (§15.2). ⚫ To distinguish exception types: Error (fatal) vs. Exception (non￾fatal), and checked vs. uncheck exceptions (§15.2). ⚫ To declare exceptions in the method header (§15.3). ⚫ To throw exceptions out of a method (§15.3). ⚫ To write a try-catch block to handle exceptions (§15.3). ⚫ To explain how an exception is propagated (§15.3). ⚫ To rethrow exceptions in a try-catch block (§15.4). ⚫ To use the finally clause in a try-catch block (§15.5). ⚫ To know when to use exceptions (§15.6). ⚫ To declare custom exception classes (§15.7 Optional). ⚫ To apply assertions to help ensure program correctness (§15.8)
首页上页2021222324252627下页末页
热门关键字
搜索一下,找到相关课件或文库资源 265 个  
©2008-现在 cucdc.com 高等教育资讯网 版权所有