cvt12.c

来自「用于进行gcc测试」· C语言 代码 · 共 31 行

C
31
字号
// { dg-do run  }// GROUPS passed conversions// cvt file// Message-Id: <9301071708.AA03432@muresh.et.tudelft.nl>// From: stravers@muresh.et.tudelft.nl (Paul Stravers)// Subject: conversion method never called// Date: Thu, 7 Jan 93 18:08:33 +0100#include <stdio.h>class test{   double d;   int    i;public:   test(double dd,int ii) {d=dd; i=ii;} // constructor   operator int&()        {return i;} // define a conversion from test to int&   int& geti()            {return i;} // same thing, but different};int main(){   test t(3.14, 5);  // Create an object t of class "test"   int x = (int&)t;  // This should call operator int&() but it does not ...   int y = t.geti(); // x and y should both be 5 ...   if (x == 5 && y == 5)     printf ("PASS\n");   else     { printf ("FAIL\n"); return 1; }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?