?? operator-star-1.c
字號(hào):
// Copyright (C) 2002 Free Software Foundation// Origin: C++/70// Contributed by Gabriel Dos Reis <gdr@integrable-solutions.net>// { dg-do compile }template <class T> struct S;template <class T> void operator* (S<T>, S<T>);template <class T> struct S { friend void operator*<> (S, S); // { } // okay void operator* (T) { } };template <class T> void operator* (S<T>, S<T>) { } int main(){ S<int> s1, s2; s1 * s2; s1 * 2;}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -