• Software Reengineering SEII - Lecture 27Software Reengineering SEII - Lecture 27

    Restructuring Code restructuring, data restructuring Forward engineering Client-server architectures, object-oriented architectures Economics of reengineering Cost benefit analysis Software reuse Benefits of reuse

    pptx21 trang | Chia sẻ: dntpro1256 | Ngày: 24/11/2020 | Lượt xem: 641 | Lượt tải: 0

  • Software Reengineering SEII - Lecture 26Software Reengineering SEII - Lecture 26

    Unified theory of software evolution Reengineering Business process reengineering and software reengineering BPR model Business definition, process identification, Process evaluation, process specification and design, prototyping, refinement and instantiation Software reengineering process model Inventory analysis, document restructuring, rev...

    pptx21 trang | Chia sẻ: dntpro1256 | Ngày: 24/11/2020 | Lượt xem: 547 | Lượt tải: 0

  • Bài giảng Lập trình Windows Form - Chương 4: Điều khiển đặc biệtBài giảng Lập trình Windows Form - Chương 4: Điều khiển đặc biệt

    Điều khiển TreeView Để Liệt kê các File, các thư mục con của các ổ Logic đặt lên Treeview ta viết lại GetFolder như sau: void GetFolder(string name, int level) { try { int level1 = 0; foreach (string d in Directory.GetDirectories(name)) { this.treeView1.Nodes[level].Nodes.Add(d.Substring(3)); GetFile(d, level, level1); level1++; ...

    pptx38 trang | Chia sẻ: thucuc2301 | Ngày: 24/11/2020 | Lượt xem: 585 | Lượt tải: 0

  • Software Process Improvement SEII - Lecture 25Software Process Improvement SEII - Lecture 25

    CMMI Continuous as well as staged model CMMI capability levels Incomplete, performed, managed, defined, quantitatively managed, optimized Example – process area Specific goals and practices, general goals and practices Other SPI frameworks SPICE, Bootstrap, TickIT, PSP, TSP SPI return on investment SPI trends

    pptx20 trang | Chia sẻ: dntpro1256 | Ngày: 24/11/2020 | Lượt xem: 506 | Lượt tải: 0

  • Bài giảng Lập trình Windows Form - Chương 3: Điều khiển thông thườngBài giảng Lập trình Windows Form - Chương 3: Điều khiển thông thường

    Nhóm điều khiển ComboBox, ListBox ListBox: Giống VB Các thuộc tính và phương thức: Tương tự COmboBOx Nhóm điều khiển CheckBox, RadioButton CheckBox: Giống VB Một số thuộc tính đáng chú ý: Checked: Trạng thái chọn (true), không chọn (False) CheckState: Trạng thái của điều khiển CHeckBox đang chọn, có 3 trạng thái: Checked, Unchecked, Indeterm...

    pptx26 trang | Chia sẻ: thucuc2301 | Ngày: 24/11/2020 | Lượt xem: 575 | Lượt tải: 0

  • Bài giảng Lập trình Windows Form - Chương 2: Form và các định dạng FormBài giảng Lập trình Windows Form - Chương 2: Form và các định dạng Form

    Ví dụ: Biến cố Load Form private void Form1_Load(object sender, EventArgs e) { MessageBox.Show("Dang Load Form"); // } Ví dụ: Biến cố Load Form private void Form1_Load(object sender, EventArgs e) { MessageBox.Show("Dang Load Form"); // } Ví dụ: Biến cố Closing Form private void Form1_FormClosing(object sender, FormClosingEve...

    pptx22 trang | Chia sẻ: thucuc2301 | Ngày: 24/11/2020 | Lượt xem: 692 | Lượt tải: 0

  • Bài giảng Lập trình Windows Form - Chương 1: Giới thiệu Windows FormBài giảng Lập trình Windows Form - Chương 1: Giới thiệu Windows Form

    System.Windows.Forms Là không gian chính cung cấp các lớp dùng để xây dựng các ứng dụng Desktop. Các lớp của System.Windows.Forms chia thành các nhóm sau: Control, User Control, Form Menu, Toolbar: ToolStrip, MenuStrip, ContextMenuStrip, StatusStrip Controls: Textbox, Combobox, Label, Listview, WebBrowser, HtmlDocument Layout: Giúp định dạng ...

    pptx18 trang | Chia sẻ: thucuc2301 | Ngày: 24/11/2020 | Lượt xem: 664 | Lượt tải: 0

  • Bài giảng Công nghệ Java - Chương 8: Java Input/Output - Trần Quang DiệuBài giảng Công nghệ Java - Chương 8: Java Input/Output - Trần Quang Diệu

    java.io.ObjectOutputStream ObjectOutputStream(OutputStream out) creates an ObjectOutputStream so that you can write objects to the specified OutputStream. void writeObject(Object obj) writes the specified object to the ObjectOutputStream. This method saves the class of the object, the signature of the class, and the values of any non-static, non...

    ppt106 trang | Chia sẻ: thucuc2301 | Ngày: 24/11/2020 | Lượt xem: 590 | Lượt tải: 0

  • Bài giảng Công nghệ Java - Chương 7: Threads - Tiến trình - Trần Quang DiệuBài giảng Công nghệ Java - Chương 7: Threads - Tiến trình - Trần Quang Diệu

    Tóm tắt Hiện thực 1 luồng bằng 1 trong 2 cách: Hiện thực 1 lớp con của lớp Thread, override phương thức run() của lớp này. Khai báo lớp mà ta xây dựng là implement của interface Runnable và định nghĩa phương thức run(). Mỗi java thread có 1 độ ưu tiên từ 1 (MIN) đến 10 (MAX) với 5 là trị mặc định. JVM không bao giờ thay đổi độ ưu tiên của luồng...

    ppt44 trang | Chia sẻ: thucuc2301 | Ngày: 24/11/2020 | Lượt xem: 693 | Lượt tải: 0

  • Bài giảng Công nghệ Java - Chương 6: Kế thừa, đóng gói trong Java - Trần Quang DiệuBài giảng Công nghệ Java - Chương 6: Kế thừa, đóng gói trong Java - Trần Quang Diệu

    Truy xuất hiện thực thông qua tham chiếu interface Bạn có thể khai báo 1 biến tham chiếu tới interface . Khi bạn gọi phương thức  phương thức thực thi sẽ tự động tìm đến thể hiện thực sự. Biến trong giao diện Có thể dùng các biến trong interface để import các hằng dùng chung cho nhiều lớp. Khi hiện thực các interface này thì các biến trên có...

    ppt52 trang | Chia sẻ: thucuc2301 | Ngày: 24/11/2020 | Lượt xem: 597 | Lượt tải: 0