代码搜索:Operators
找到约 8,993 项符合「Operators」的源代码
代码结果 8,993
www.eeworm.com/read/256101/12028798
cpp fig05_18.cpp
// Fig. 5.18: fig05_18.cpp
// Logical operators.
#include
using std::cout;
using std::endl;
using std::boolalpha; // causes bool values to print as "true" or "false"
int main()
{
www.eeworm.com/read/255742/12060237
tmpl quadcrossover.tmpl
/** -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*-
The above line is usefulin Emacs-like editors
*/
/*
Template for simple quadratic crossover operators
======
www.eeworm.com/read/255742/12060407
h eoonemaxquadcrossover.h
/** -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*-
The above line is usefulin Emacs-like editors
*/
/*
Template for simple quadratic crossover operators
=======
www.eeworm.com/read/128553/14291238
htm assignop.htm
Assignment and computed assignment operators
Prev
www.eeworm.com/read/127895/14329519
html chapter2.html
Chapter 2 - Types, Operators and Expressions
Back to Chapter 1 --
Index
www.eeworm.com/read/225725/14521618
htm ei10.htm
Effective C++, 2E | Item 10: Write operator delete if you write operator new Back to Item 9: Avoid hiding the "normal" form of new.
Continue to Constructors, Destructors, and Assignment Operators
Ite
www.eeworm.com/read/222447/14689662
i meep_op_renames.i
// operators must be explicitly renamed for SWIG to work
%rename(meep_symmetry_add) meep::symmetry::operator+;
%rename(meep_symmetry_mul) meep::symmetry::operator*;
%rename(meep_symmetry_sub) meep::s
www.eeworm.com/read/117921/14897349
h sortedlinkedlistunique.h
/*
$Id: SortedLinkedListUnique.h,v 1.2 1997/02/02 01:31:04 matt Exp $
Sorted linked lists with all unique items (no duplicatates).
Requires == and < operators for items.
(c) Oct 1995 Matt P
www.eeworm.com/read/210671/15193697
cpp fig16_11.cpp
// Fig. 16.11: fig16_11.cpp
// Using the bitwise shift operators
#include
using std::cout;
using std::cin;
using std::endl;
#include
using std::setw;
void display
www.eeworm.com/read/208576/15243759
cpp fig11_05.cpp
// Fig. 11.5: fig11_05.cpp
// Demonstrating class PhoneNumber's overloaded stream insertion
// and stream extraction operators.
#include
using std::cout;
using std::cin;
using std::e