Компьютерный форум OSzone.net  

Компьютерный форум OSzone.net (http://forum.oszone.net/index.php)
-   Программирование и базы данных (http://forum.oszone.net/forumdisplay.php?f=21)
-   -   Создать шаблон (http://forum.oszone.net/showthread.php?t=163813)

котвася 17-01-2010 20:40 1322945

Создать шаблон
 
Как правильно создавать шаблоны в MVS2008?
Не получается создать.

ganselo 17-01-2010 23:08 1323042

Код:

template<class type>
type test(type a, type b)
{
    return a + b;
}

int main()
{
    cout << test(10, 20);
    cout << test(10.5, 20.2);
}

template<class type1>
class test
{
    public:
    test() {}
    type1 plus(type1 a, type1 b)
    {
        return a + b;
    }
    type1 minus(type1 a, type1 1);
};

template<class type1>
type1 test<type1>::minus(type1 a, type1 b)
{
    return a - b;
}

int main()
{
    test<double> t1;
    test<int> t2;
   
    t1.plus(10.1,10.2);
    t2.minus(1, 2);
}


котвася 13-02-2010 19:19 1346375

я не про это, я имел ввиду шаблон приложения

Admiral 13-02-2010 23:40 1346562

котвася File -> Export Template
Export Template Wizard

котвася 14-02-2010 16:28 1346905

почему-то не работает. Или не активно Export Template. А если активно то нет выпадающего списка на основе которого создавать шаблон


Время: 11:33.

Время: 11:33.
© OSzone.net 2001-