肠系膜上动脉有哪些分支?
参考答案:
有空肠与回肠动脉,回结肠动脉,右结肠动脉和中结肠动脉。
本题的功能是获得系统剪贴板中的内容。窗口中有一个菜单“Edit”和一个文本域,“Edit”中有菜单项“Cut”、“Copy”和“Paste”,在文本域中输入内容,可以通过菜单进行剪切、复制和粘贴操作,如果系统剪贴板为空,又做粘贴操作的话,则设置文本域中背景颜色为红色,并显示错误信息。 import java. awt. * ; import java. io. * ; import java. awt. datatransfer. * ; import java. awt. event. * ; class java3 extends Frame implements ActionListener, ClipboardOwner TextArea textArea=new TextArea(); java3() super("java3"); addWindowListener(new WindowAdapter() public void windowClosing(WindowEvent e) System. exit(0); /); MenuBar mb=new MenuBar(); Menu m=new Menu("Edit"); setLayout(new BorderLayout()); add("Center", textArea); m. add("Cut"); m. add("Copy"); m. add("Paste"); mb. add(m); setMenuBar(this); for (int i=0; i<m. getItemCount(); i++) m. item(i). addActionListener(this); setSize(300,300); show(); public void actionPerformed(ActionEvent evt) if ("Paste". equals(evt, getActionCommand())) boolean error=true; Transferable t= getToolkit(). getSystemClipboard(). getContents(this); try if(t ! =null & &. t. isDataFlavorSupported(DataFlavor, stringFlavor)) textArea. setBackground(Color, white); textArea. setForeground(Color, black); textArea. replaceRange( (String) t. getTransferData(DataFlavor. stringFlavor), textArea. getSelectionStart(), textArea. getSelectionEnd()); error=false; catch(UnsupportedFlavorException e) catch(IOException e) if (error) textArea. setBackground(Color, red); textArea. setForeground(Color, white); textArea. repaint(); textArea. setText("ERROR:\nEither the clipboard"+" is empty or the contents is not a string."); else if ("Copy". equals(evt. getActionCommand ())) setContents(); else if ("Cut". equals (evt. getActionCommand ())) setContents (); textArea. replaceRange("", textArea. getSelectionStart(), textArea. getSelectionEnd()); void setContents() S=textArea. getSelectedText(); StringSelection contents=new StringSelection(s); getToolkit(). getSystemClipboard(). setContents(contents, this); public void lostOwnership (Clipboard clipboard, Transferable contents) System. out. println("lost ownership"); public static void main(String args[]) new java3();
某高层框架-剪力墙结构底层内柱如图所示,其横截面为600mm×1650mm,柱的混凝土强度等级为C60,相应于作用的标准组合时的柱轴力Fk=16000kN,弯矩Mk=200kN·m,柱网尺寸为7m×9.45m,采用平板式筏形基础,作用的标准组合下地基净反力为242kPa。基本组合由永久作用控制。筏板的混凝土强度等级为C30,筏板厚为1.2m,柱下局部板厚为1.8m。取as=50mm。
若筏板有效厚度h0=1.75m,试问,内柱下冲切临界截面上最大剪应力τmax(kPa),与下列何项数值最为接近?()提示:αs=0.445;Is=38.27m4。
A.545
B.736
C.650
D.702