Skip to content
This repository was archived by the owner on Apr 21, 2018. It is now read-only.

Commit 5914e1a

Browse files
author
YouniS Bensalah
committed
Slides about Inheritance, Polymorphism, Debugging
1 parent 268ed87 commit 5914e1a

4 files changed

Lines changed: 164 additions & 0 deletions

File tree

img/NG8XW8J8GT.jpg

358 KB
Loading

img/12002888_991405854256604_349791181791359257_n.jpg renamed to img/additionalquestions.jpg

File renamed without changes.

img/dilbert-software-demo.jpg

40.3 KB
Loading

slides-06.tex

Lines changed: 164 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
%% LaTeX-Beamer template for KIT design
2+
%% by Erik Burger, Christian Hammer
3+
%% title picture by Klaus Krogmann
4+
%%
5+
%% version 2.1
6+
%%
7+
%% mostly compatible to KIT corporate design v2.0
8+
%% http://intranet.kit.edu/gestaltungsrichtlinien.php
9+
%%
10+
%% Problems, bugs and comments to
11+
12+
13+
\documentclass[18pt]{beamer}
14+
15+
%% SLIDE FORMAT
16+
17+
% use 'beamerthemekit' for standard 4:3 ratio
18+
% for widescreen slides (16:9), use 'beamerthemekitwide'
19+
20+
\usepackage{templates/beamerthemekit}
21+
% \usepackage{templates/beamerthemekitwide}
22+
23+
\usepackage[utf8]{inputenc}
24+
\usepackage{hyperref}
25+
\usepackage{listings}
26+
%\usepackage{xcolor}
27+
%\usepackage{colortbl}
28+
%\usepackage{array}
29+
%\usepackage{tikz}
30+
%\usetikzlibrary{calc,shapes.multipart,chains,arrows}
31+
32+
%\definecolor{lime}{HTML}{8FFF53}
33+
34+
%% TITLE PICTURE
35+
36+
% if a custom picture is to be used on the title page, copy it into the 'logos'
37+
% directory, in the line below, replace 'mypicture' with the
38+
% filename (without extension) and uncomment the following line
39+
% (picture proportions: 63 : 20 for standard, 169 : 40 for wide
40+
% *.eps format if you use latex+dvips+ps2pdf,
41+
% *.jpg/*.png/*.pdf if you use pdflatex)
42+
43+
\titleimage{greendrop}
44+
45+
%% TITLE LOGO
46+
47+
% for a custom logo on the front page, copy your file into the 'logos'
48+
% directory, insert the filename in the line below and uncomment it
49+
50+
%\titlelogo{mylogo}
51+
52+
% (*.eps format if you use latex+dvips+ps2pdf,
53+
% *.jpg/*.png/*.pdf if you use pdflatex)
54+
55+
%% TikZ INTEGRATION
56+
57+
% use these packages for PCM symbols and UML classes
58+
% \usepackage{templates/tikzkit}
59+
% \usepackage{templates/tikzuml}
60+
61+
% the presentation starts here
62+
63+
\title[Vererbung und Polymorphismus]{Programmieren:\\ Vererbung und Polymorphismus}
64+
\subtitle{Tutorium 30}
65+
\author{YouniS Bensalah}
66+
\date{December 4, 2015}
67+
68+
\institute{Chair for Software Design and Quality}
69+
70+
% Bibliography
71+
72+
\usepackage[citestyle=authoryear,bibstyle=numeric,hyperref,backend=biber]{biblatex}
73+
\addbibresource{templates/example.bib}
74+
\bibhang1em
75+
76+
\begin{document}
77+
78+
% change the following line to "ngerman" for German style date and logos
79+
\selectlanguage{english}
80+
81+
%title page
82+
\begin{frame}
83+
\titlepage
84+
\end{frame}
85+
86+
%table of contents
87+
\begin{frame}{Heute}
88+
\tableofcontents
89+
\end{frame}
90+
91+
\section{Vererbung}
92+
93+
\begin{frame}{Vererbung}
94+
body
95+
\end{frame}
96+
97+
\section{Polymorphismus}
98+
99+
\begin{frame}{Polymorphismus}
100+
body
101+
\end{frame}
102+
103+
\begin{frame}{super}
104+
body
105+
\end{frame}
106+
107+
\subsection{Dynamische Bindung}
108+
109+
\begin{frame}{Dynamische Bindung}
110+
body
111+
\end{frame}
112+
113+
\subsection{Abstrakte Klassen}
114+
115+
\begin{frame}{Abstrakte Klassen}
116+
body
117+
\end{frame}
118+
119+
\begin{frame}{final}
120+
body
121+
\end{frame}
122+
123+
\section{Interfaces}
124+
125+
\begin{frame}{Interfaces}
126+
body
127+
\end{frame}
128+
129+
\begin{frame}{instanceof-Operator}
130+
body
131+
\end{frame}
132+
133+
\appendix
134+
\beginbackup
135+
136+
\begin{frame}{Debugging}
137+
\begin{figure}
138+
\includegraphics[scale=.15]{img/NG8XW8J8GT.jpg}
139+
\end{figure}
140+
\end{frame}
141+
142+
\begin{frame}{Eclipse IDE}
143+
body
144+
\end{frame}
145+
146+
\begin{frame}{Checkstyle}
147+
body
148+
\end{frame}
149+
150+
\begin{frame}{Fragen ?}
151+
\begin{figure}
152+
\includegraphics[scale=.6]{img/additionalquestions.jpg}
153+
\end{figure}
154+
\end{frame}
155+
156+
\begin{frame}{Bis nächste Woche !}
157+
\begin{figure}
158+
\includegraphics[scale=.6]{img/dilbert-software-demo.jpg}
159+
\end{figure}
160+
\end{frame}
161+
162+
\backupend
163+
164+
\end{document}

0 commit comments

Comments
 (0)