Similar documents
1 CUI CUI CUI 1.1 cout cin redirect.cpp #i n c l u d e <s t r i n g > 3 using namespace std ; 5 6 i n t main ( void ) 7 { 8 s t r i n g s ; 10 c

新版明解C言語 実践編

Condition DAQ condition condition 2 3 XML key value

ex01.dvi

untitled


£Ã¥×¥í¥°¥é¥ß¥ó¥°ÆþÌç (2018) - Â裶²ó ¨¡ À©¸æ¹½Â¤¡§·«¤êÊÖ¤· ¨¡

2008chom.pdf

SystemC言語概論

ex01.dvi

1.ppt

[1] #include<stdio.h> main() { printf("hello, world."); return 0; } (G1) int long int float ± ±

1. ( ) SPH 1. 1: 2: 2.

design_pattern.key

£Ã¥×¥í¥°¥é¥ß¥ó¥°(2018) - Âè11²ó – ½ÉÂꣲ¤Î²òÀ⡤±é½¬£² –

Microsoft Word - C言語研修 C++編 3.doc

double float

& & a a * * ptr p int a ; int *a ; int a ; int a int *a

£Ã¥×¥í¥°¥é¥ß¥ó¥°ÆþÌç (2018) - Â裵²ó ¨¡ À©¸æ¹½Â¤¡§¾ò·ïʬ´ô ¨¡

WinHPC ppt

3.1 stdio.h iostream List.2 using namespace std C printf ( ) %d %f %s %d C++ cout cout List.2 Hello World! cout << float a = 1.2f; int b = 3; cout <<

ex12.dvi

とても使いやすい Boost の serialization

Java演習(4) -- 変数と型 --

programmingII2019-v01

endo.PDF


2

joho07-1.ppt

<8D4C95F182C682AB372E312E696E6464>

<8D4C95F182C682AB362E312E696E6464>

日本外傷歯学会認定医(平成24年11月30日付) H

XMPによる並列化実装2

file:///D|/C言語の擬似クラス.txt

Microsoft Word - C.....u.K...doc

Microsoft Word - keisankigairon.ch doc

double 2 std::cin, std::cout 1.2 C fopen() fclose() C++ std::fstream 1-3 #include <fstream> std::fstream fout; int a = 123; fout.open( "data.t

B5‘·¢‡Ì…X…X…†PDFŠp

Microsoft Word - ‰IŠv⁄T†`⁄V87†`97.doc

JPROM-PRINT

untitled

(STL) STL 1 (deta structure) (algorithm) (deta structure) 2 STL STL (Standard Template Library) 2.1 STL STL ( ) vector<int> x; for(int i = 0; i < 10;



untitled

1001.indd

0007

“LŁñ‡È‡©‡ª‡í409“ƒ

STEEL_No.24_h1-4

みさき_1


2008CHORD11....



もりおか医報人7.indd

2

H21_report


untitled


1 2

株主通信


広報きたしおばら


01-15_28-30_04.indd

きょうさいだよりv14-1.indd

1p

テクノ東京21-2005年2月号

1p



南国暮らしの会 会報2011年春季号

72市内.ai

プリント用.indd

はつらつ190_表紙01.ai


untitled



TIC NEWS No86/No86(CID)

‡·‡Ä‡¡†`‡é18“ƒ*

++_宅建しが210_p1,16

藝文やまなしvol21_ indd

みさきレポート10A4


礎_vol19修正案

vol.392

10-08-H01.ai


ふれあい32号.indd

合体

vol6


untitled

T-News_No29.pdf

Vol. 31, No. 1,

Vol

表1-2_pdf用101.indd

indd

Transcription:

北米アジャイル界デビュー fkinoからは 何も聞いてませんでした

これまでに書いたもの Web 2.0 ビギナーズバイブル エンジニアマインド vol.5 開発の現場 vol.011

Dave 達人 Thomasも云ってたよ http://jp.rubyist.net/rubykaigi2007/?c=plugin;plugin=attach_download;p=program0610;file_name=the_island_of_ruby_j.pdf

class QueueTest : public testing::test { protected: virtual void SetUp() { q1_.enqueue(1); } Queue<int> q1_; }; TEST_F(QueueTest, DefaultConstructor) { EXPECT_EQ(1, q1_.size()); } TEST_F(QueueTest, Map) { MapTester(&q1_); }

#include <gtest/gtest.h>

#include <iostream> #include <gtest/gtest.h> int main(int argc, char **argv) { std::cout << "Running main() from gtest_main.cc\n"; } testing::initgoogletest(&argc, argv); return RUN_ALL_TESTS();

#include <gtest/gtest.h> class QueueTest : public testing::test { protected: virtual void SetUp() { q.enqueue(1); } // ( ) }; Queue<int> q;

TEST(MyString, ConstructorFromCString) { } const MyString s(khellostring); EXPECT_TRUE(strcmp(s.c_string(), khellostring) == 0); EXPECT_EQ(sizeof(kHelloString)/sizeof(kHelloString[0]) - 1, s.length());

TEST_F(QueueTest, DefaultConstructor) { EXPECT_EQ(0, q.size()); }

TEST_F(QueueTest, DefaultConstructor) { EXPECT_EQ(0, q.size()); }

TEST_F(QueueTest, DefaultConstructor) { ASSERT_EQ(0, q.size()); }

#include "tbb/parallel_sort" #include <math.h> using namespace tbb; const int N = 100000; float a[n]; float b[n]; void SortExample() { for (int i = 0; i < N; i++) { } a[i] = sin((double)i); b[i] = cos((double)i); } parallel_sort(a, a + N); parallel_sort(b, b + N, std::greater<float>());