代码搜索:Operators
找到约 8,993 项符合「Operators」的源代码
代码结果 8,993
www.eeworm.com/read/190666/5175371
c 900519_01.c
// g++ 1.37.1 bug 900519_01
// g++ fails to flag errors for some attempts to declare or define non-member
// type conversion operators.
// cfront 2.0 passes this test.
// keywords: user-defined typ
www.eeworm.com/read/190666/5175717
c overload19.c
// PRMS Id: 4689
// Bug: g++ doesn't notice operators overloaded on enumeral types.
enum E { A=5, B=32, C=100 };
E operator|(E a, E b) { return C; };
int main()
{
return (A|B) != C;
}
www.eeworm.com/read/180222/5288398
h byte.h
//: C12:Byte.h
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Member overloaded operators
#ifndef
www.eeworm.com/read/179153/5309764
pod overload.pod
=head1 NAME
Bit::Vector::Overload - Overloaded operators add-on for Bit::Vector
=head1 USAGE
Note that you do not need to "C"
in addition to this module.
Simply "C
www.eeworm.com/read/340665/3266435
asm pl7.asm
.ALTERNATE
! test of string operators
define MACRO str1,str2
SDATA str1
SDATA "str2"
ENDM
define one" way to get "spaces,0
define "lot's! of ,chars%", 0
www.eeworm.com/read/340665/3276025
c 900519_01.c
// g++ 1.37.1 bug 900519_01
// g++ fails to flag errors for some attempts to declare or define non-member
// type conversion operators.
// cfront 2.0 passes this test.
// keywords: user-defined typ
www.eeworm.com/read/340665/3276371
c overload19.c
// PRMS Id: 4689
// Bug: g++ doesn't notice operators overloaded on enumeral types.
enum E { A=5, B=32, C=100 };
E operator|(E a, E b) { return C; };
int main()
{
return (A|B) != C;
}
www.eeworm.com/read/277930/4148561
cpp cppdebug.cpp
#include
#include
#include "matrix.h"
#include "operators.h"
using namespace std;
using namespace mylib;
int main(int argc, char *argv[])
{
matrix m(2,3);
c
www.eeworm.com/read/273525/4207365
hlp m2_op_conditional.hlp
{smcl}
{* 07apr2005}{...}
{cmd:help m2 op_conditional}
{hline}
{* index operators}{...}
{* index conditional operator}{...}
{title:Title}
{p 4 4 2}
{hi:[M-2] op_conditional -- Conditional
www.eeworm.com/read/440906/1777657
c 900519_01.c
// g++ 1.37.1 bug 900519_01
// g++ fails to flag errors for some attempts to declare or define non-member
// type conversion operators.
// cfront 2.0 passes this test.
// keywords: user-defined typ