嗔秤戻幣�哉膵�云利匈嬉蝕湊蛸賜�塋床四衲���萩晦編報炎嘔囚^泡仟 ̄云利匈�《超噌�殻窟�嵌虜隆輓麈觚翹瀘卉韮�仍仍�。� 烏御危列
浪慕利 卦指云慕朕村 厘議慕尺 厘議慕禰 TXT畠云和墮 序秘慕杏 紗秘慕禰

VB2008貫秘壇欺娼宥(PDF鯉塀哂猟井)-及93嫗

梓囚徒貧圭�鮗� ○ 賜 ★ 辛酔堀貧和鍬匈��梓囚徒貧議 Enter 囚辛指欺云慕朕村匈��梓囚徒貧圭�鮗� ● 辛指欺云匈競何��
!!!!隆堋響頼��紗秘慕禰厮宴和肝写偬堋響��




                Console。WriteLine�─�Argument �──�& argument & ;��;�� 

            Next 

        #End If 



        Dim reader As TextReader = Nothing 

        Dim writer As TextWriter = Nothing 

        If args。Length = 0 Then 

            reader = Console。In 

            writer = Console。Out 

        ElseIf args。Length = 1 Then 

            If args��0�� = ;´help; Then 

                Bootstrap。DisplayHelp�┌� 

                Return 

            End If 


´´´´´´´´´´´´´´´´´´´´´´Page 280´´´´´´´´´´´´´´´´´´´´´´´

258       CH AP T E R   1 0   *    L E A R N I N G   A B OU T   P E R S IS TE N CE 



                      reader = File。OpenText��args��0���� 

                      writer = Console。Out 

                  ElseIf args。Length = 2 Then 

                      If args��0��  ;´out; Then 

                          Bootstrap。DisplayHelp�┌� 

                          Return 

                      End If 

                      reader = Console。In 

                      writer = File。CreateText��args��1���� 

                  ElseIf args。Length = 3 Then 

                      If args��0��  ;´out; Then 

                          Bootstrap。DisplayHelp�┌� 

                          Return 

                      End If 

                      reader = File。OpenText��args��2���� 

                      writer = File。CreateText��args��1���� 

                  Else 

                      Bootstrap。DisplayHelp�┌� 

                      Return 

                  End If 

                  writer。Write��processor。Process��reader。ReadToEnd���� 



              End Sub 

           End Module 



                In the code�察�before the first If block�察�the variables reader and writer are assigned to the  

          value  Nothing�察�indicating that there is a reader and there is writer�察�but we don¨t know whether  

          they will reference streams or files。 Then the If blocks go through the different binations  

          and variations of the mand´line arguments ��see Table 10´1��。  

                The code follows a truth table approach�察�which could be considered following a set of  

          conditions and then acting on the conditions。 For example�察�a state could be defined as If A = X�察 �

          and B ��= Y then do C。 To process the mand´line arguments�察�we define all of the possible  

          states and then all of the possible resulting actions。  



          *Note  By going through each and every variation of the mand´line arguments in a sequential manner�察 �

          I am ensuring that I am testing for each situation。 When running various tests and then acting on the tests�察 �

          you need to be explicit and redundant�察�because the code is easier to follow。 All too often�察�programmers take  

          shortcuts and miss a particular test�察�causing a bug that is extremely hard to track down。  



                The first If block tests if the argument count is zero�察�then the second tests if there is a  

          single argument�察�and so on。 Let¨s look at the first test�此�


´´´´´´´´´´´´´´´´´´´´´´Page 281´´´´´´´´´´´´´´´´´´´´´´´

                                                        CH A PT E R   1 0   *    L E A R N I N G   A B O U T  P E R S IS T E N CE 259 



            If args。Length = 0 Then 

                reader = Console。In 

                writer = Console。Out 

                。。。 

            End If 



     Here�察�the source and destination of the lottery number data stream are the console input  

and output streams。 The code assigns the reader and writer variables。 

     If the mand line had no arguments or if one of the mand´line argument tests has  

been verified�察�the IProcessor implementation is called�此�



            writer。Write��processor。Process��reader。ReadToEnd�┌����� 



     The code directly executes writer。Write�┌��察�processor。Process�┌��察�and  

reader。ReadToEnd�┌�。 There is no verification of whether writer�察�processor�察�or reader point to  

actual object instances。 There could be a case for adding code that verifies if processor references  

an actual object instance�察�but there is absolutely no point to adding code to verify if writer and  

reader reference actual object instances。 Doing so would imply that your truth test block is  

inplete and you have not thought through all the permutations that assign writer and reader。  

     Let¨s look at the next truth test�察�which indicates that there is one mand´line argument。  

When there is one mand´line argument�察�you need to verify which of the two mand

line variations it is�此�



TestProcessor。exe ´help 



or�此�



TextProcessor。exe lotto。txt 



     The first variation has an explicit mand´line parameter ´help。 The second variation is  

the identifier of a file that contains the input data。 Thus�察�the second If block contains another  

If block to test another aspect of the truth test�此�



        ElseIf args。Length = 1 Then 

            If args��0�� = ;´help; Then 

                Bootstrap。DisplayHelp�┌� 

                Return 

            End If 

            reader = File。OpenText��args��0���� 

            writer = Console。Out 



     When testing for the  ´help argument�察�immediately after calling DisplayHelp�┌��察�you must  

use the Return keyword。 This is extremely important because�察�when the console application  

calls DisplayHelp�┌��察�it is saying�察 �I don¨t care where the input or output data is ing from  

since I am doing something else and thus must stop processing。 ̄ If you were to continue  

processing�察�the writer and reader could reference invalid states and cause an exception to  

be generated。 

     If all tests have been tried and failed�察�then the final Else calls the method DisplayHelp�┌� to  

indicate that the mand line is incorrect�察�and the help shows the correct mand line。 

     Doing a plete test and debug of the console application is difficult because of the  

streaming facilities。 When you stream data from one process to another�察�a process is started  


´´´´´´´´´´´´´´´´´´´´´´Page 282´´´´´´´´´´´´´´´´´´´´´´´

260       CH AP T E R   1 0   *    L E A R N I N G   A B OU T   P E R S IS TE N CE 



           and stopped without an easy way for the debugger to jump in between。 Thus�察�to be able to  

           debug and verify if everything works�察�another strategy is needed。 The solution is to use prepro

           cessor directives ��discussed in Chapter 6���察�like the following。 



           #If DEBUG_OUTPUT Then 

               Console。WriteLine�─�Argument count�──�& args。Length & ;��;�� 

               For Each argument as String in args 

                   Console。WriteLine�─�Argument �──�& argument & ;��;�� 

               Next 

           #End If 



                The directive code is executed if DEBUG_OUTPUT is defined。 In the example�察�the argument  

           count and arguments are output to the console。 To activate the directive�察�the item DEBUG_OUTPUT  

           is defined at the project level or near the top of the source code file。 

                The shell is plete�察�and all that remains is the implementation of the text processor。  



           Implementing the TextProcessor Application 



           In implementing the text processor�察�the problem that confronts us is how to fix a data stream so  

           that it is consistent。 The main reasons for data inconsistencies are human error and carelessness。 

                Figure 10´3 shows what is displayed when you load the lottery number text file in Notepad。  

           It seems very obvious that something is not right with this file。 



           Figure 10´3。  The lottery text file loaded in Notepad 


´´´´´´´´´´´´´´´´´´´´´´Page 283´´´´´´´´´´´´´´´´´´´´´´´

                                                            CH A PT E R   1 0   *    L E A R N I N G   A B O U T  P E R S IS T E N CE 261 



      However�察�what appears wrong in the Notepad display is not the real problem。 When the  

text file is loaded using another text editor�察�such as V
卦指朕村 貧匯匈 和匯匈 指欺競何 壘��0�� 家��0��
隆堋響頼��紗秘慕禰厮宴和肝写偬堋響��
梁椣戻幣�� 梁心弌傍議揖扮窟燕得胎��傍竃徭失議心隈才凪万弌誌育断蛍�輌臆惨軼僑〃�燕慕得珊辛參資誼持蛍才将刮襲潜��範寔亟圻幹慕得 瓜寡追葎娼得辛參資誼寄楚署衛、持蛍才将刮襲潜填��