csc-propaganda/poster-archive/cpptalks-x02.tex

57 lines
2.4 KiB
TeX

%% This is csc-poster-sample, a sample CSC poster
%% Copyright (C) 2003 Computer Science Club of the University of Waterloo
%%
%% This program is free software; you can redistribute it and/or modify
%% it under the terms of the GNU General Public License as published by
%% the Free Software Foundation; either version 2 of the License, or
%% (at your option) any later version.
%%
%% This program is distributed in the hope that it will be useful,
%% but WITHOUT ANY WARRANTY; without even the implied warranty of
%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
%% GNU General Public License for more details.
%%
%% You should have received a copy of the GNU General Public License
%% along with this program; if not, write to the Free Software
%% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
\documentclass{article}
\usepackage{csc-poster}
\begin{document}
\vspace*{-1in}
%% TITLE
% This command lays out the top of the document.
% The first parameter is the title.
% The second parameter is the speaker. This parameter may be empty.
\cschead{C++ GoingNative Video Lecture Series}{Calum T. Dalek}
%% SUBTITLE
% This command prints the sub-title and is completely optional.
\cscsubtitle{Don't Help the Compiler -- Stephan T. Lavavej}
C++ has powerful rules for dealing with low-level program structure. Before a
program is ever executed, the compiler determines valuable information about
every expression in the source code. The compiler understands exactly how long
each object's resources will be needed (lifetime), whether each expression
refers to an object that the program has no other way of accessing
(rvalueness), and what operations can be performed on each object (type). Using
examples from C++98 through C++14, this presentation will demonstrate how to
write code that works with the compiler's knowledge to increase robustness,
efficiency, and clarity. This presentation will also demonstrate the horrible
things that happen when programmers think they can do tasks that are better
left to compilers.
This is the second lecture of five in the C++ GoingNative Video Lecture Series.
%% FOOTER
% The first through third arguments tell us the date and time.
% The last argument is a pithy saying. It may be empty.
% Following the footer, the CSC logo is printed.
\cscfoot{Thursday, 2013-10-17}{6:30 PM}{PHY 150}{{\tt
http://channel9.msdn.com/Events/GoingNative/2013}}
\end{document}