]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/21_strings/basic_string/element_access/char/1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / element_access / char / 1.cc
CommitLineData
b2dad0e3
BK
1// 1999-06-08 bkoz
2
99dee823 3// Copyright (C) 1999-2021 Free Software Foundation, Inc.
b2dad0e3
BK
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
748086b7 8// Free Software Foundation; either version 3, or (at your option)
b2dad0e3
BK
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
b2dad0e3
BK
19
20// 21.3.4 basic_string element access
21
22#include <string>
23#include <stdexcept>
fe413112 24#include <testsuite_hooks.h>
b2dad0e3 25
118c8424 26void test01(void)
b2dad0e3 27{
b2dad0e3
BK
28 typedef std::string::size_type csize_type;
29 typedef std::string::const_reference cref;
30 typedef std::string::reference ref;
b2dad0e3
BK
31 csize_type csz01, csz02;
32
33 const std::string str01("tamarindo, costa rica");
f4655693 34 std::string str02("41st street beach, capitola, california");
b2dad0e3
BK
35 std::string str03;
36
37 // const_reference operator[] (size_type pos) const;
38 csz01 = str01.size();
39 cref cref1 = str01[csz01 - 1];
aa1b2f7d 40 VERIFY( cref1 == 'a' );
b2dad0e3 41 cref cref2 = str01[csz01];
aa1b2f7d 42 VERIFY( cref2 == char() );
b2dad0e3
BK
43
44 // reference operator[] (size_type pos);
45 csz02 = str02.size();
46 ref ref1 = str02[csz02 - 1];
aa1b2f7d 47 VERIFY( ref1 == 'a' );
b2dad0e3 48 ref ref2 = str02[1];
f4655693 49 VERIFY( ref2 == '1' );
b2dad0e3
BK
50
51 // const_reference at(size_type pos) const;
52 csz01 = str01.size();
53 cref cref3 = str01.at(csz01 - 1);
aa1b2f7d 54 VERIFY( cref3 == 'a' );
b2dad0e3 55 try {
11f10e6b 56 str01.at(csz01);
aa1b2f7d 57 VERIFY( false ); // Should not get here, as exception thrown.
b2dad0e3
BK
58 }
59 catch(std::out_of_range& fail) {
aa1b2f7d 60 VERIFY( true );
b2dad0e3
BK
61 }
62 catch(...) {
aa1b2f7d 63 VERIFY( false );
b2dad0e3
BK
64 }
65
66 // reference at(size_type pos);
67 csz01 = str02.size();
68 ref ref3 = str02.at(csz02 - 1);
aa1b2f7d 69 VERIFY( ref3 == 'a' );
b2dad0e3 70 try {
11f10e6b 71 str02.at(csz02);
aa1b2f7d 72 VERIFY( false ); // Should not get here, as exception thrown.
b2dad0e3
BK
73 }
74 catch(std::out_of_range& fail) {
aa1b2f7d 75 VERIFY( true );
b2dad0e3
BK
76 }
77 catch(...) {
aa1b2f7d 78 VERIFY( false );
b2dad0e3 79 }
b2dad0e3
BK
80}
81
82int main()
83{
b2dad0e3 84 test01();
04d930e6 85 return 0;
b2dad0e3 86}