检查输入数据是什么的逻辑
任何人都可以帮助我解决这个逻辑,当我输入源 ip 时,应该调用特定函数 XXX() 如果我输入目标 ip 或目标端口或源端口,它应该调用不同的函数,比如 YYY(),我的疑问是如何我可以识别输入的地址是源IP地址还是目的地址
can any one help me in this logic, when i enter a source ip is should call a particular function XXX()if i enter destination ip or destination port or source port it should call a different function say YYY(), my doubt is how can i recognise whether the input address is source ip address or destination address
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您指的是命令行参数。
您的程序应该有选项。
例如:
然后您应该解析这些并相应地调用函数。
With assumption that you are referring to Command Line Arguments.
You should have options to your program.
For example :
You should then parse those and call the functions accordingly.